From 6bbb8495a307dba214f89f4cd819369992f177c5 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Sat, 10 Feb 2024 19:22:02 -0500 Subject: [PATCH 1/5] simple2 query: define ilxb for http://uri.interlex.org/base/ --- queries/simple2_query.sparql | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/queries/simple2_query.sparql b/queries/simple2_query.sparql index 3f7e53a..50beec4 100644 --- a/queries/simple2_query.sparql +++ b/queries/simple2_query.sparql @@ -15,13 +15,14 @@ prefix rdfs: prefix uberon: prefix xsd: prefix ilx: +prefix ilxb: select distinct ?study ?ID ?Age ?dx ?Gender ?FIQ ?PIQ ?VIQ ?tool ?softwareLabel ?federatedLabel ?laterality ?volume where { ?measure a/rdfs:subClassOf nidm:DataElement; rdfs:label ?softwareLabel; - nidm:measureOf ; - nidm:datumType . + nidm:measureOf ilxb:ilx_0112559 ; + nidm:datumType ilxb:ilx_0738276 . OPTIONAL {?measure nidm:isAbout ?federatedLabel }. OPTIONAL {?measure nidm:hasLaterality ?laterality }. @@ -43,7 +44,7 @@ where { } # find sex data element uuid {?sex_measure a nidm:PersonalDataElement ; - nidm:isAbout . + nidm:isAbout ilxb:ilx_0101292 . } # find diagnosis data element uuid {?DX_measure a nidm:PersonalDataElement ; @@ -52,15 +53,15 @@ where { } # find fiq data element uuid {?FIQ_measure a nidm:PersonalDataElement ; - nidm:isAbout . + nidm:isAbout ilxb:ilx_0739365 . } # find piq data element uuid {?PIQ_measure a nidm:PersonalDataElement ; - nidm:isAbout . + nidm:isAbout ilxb:ilx_0739363 . } # find viq data element uuid {?VIQ_measure a nidm:PersonalDataElement ; - nidm:isAbout . + nidm:isAbout ilxb:ilx_0739359 . } ?as_entity prov:wasGeneratedBy ?as_activity ; From 93a95459be5c4c9aae9004728d9fdb7efb373331 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Sat, 10 Feb 2024 19:23:55 -0500 Subject: [PATCH 2/5] simple2 query: delete trailing whitespace and excessive empty lines --- queries/simple2_query.sparql | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/queries/simple2_query.sparql b/queries/simple2_query.sparql index 50beec4..8cfa4dd 100644 --- a/queries/simple2_query.sparql +++ b/queries/simple2_query.sparql @@ -6,7 +6,7 @@ prefix nidm: prefix onli: prefix freesurfer: prefix dx: -prefix ants: +prefix ants: prefix dct: prefix dctypes: prefix ncicb: @@ -33,14 +33,14 @@ where { prov:qualifiedAssociation [prov:agent [nidm:NIDM_0000164 ?tool]] ; prov:qualifiedAssociation [prov:agent [ndar:src_subject_id ?ID]] . ?tool_entity prov:wasGeneratedBy ?tool_act . - + ?as_activity prov:qualifiedAssociation [prov:agent [ndar:src_subject_id ?ID]] . - - + + # find age data element uuid {?age_measure a nidm:PersonalDataElement ; nidm:isAbout ilx:ilx_0100400 . - + } # find sex data element uuid {?sex_measure a nidm:PersonalDataElement ; @@ -49,7 +49,7 @@ where { # find diagnosis data element uuid {?DX_measure a nidm:PersonalDataElement ; nidm:isAbout ncit:Diagnosis . - + } # find fiq data element uuid {?FIQ_measure a nidm:PersonalDataElement ; @@ -63,7 +63,7 @@ where { {?VIQ_measure a nidm:PersonalDataElement ; nidm:isAbout ilxb:ilx_0739359 . } - + ?as_entity prov:wasGeneratedBy ?as_activity ; ?age_measure ?Age; ?sex_measure ?GenderCoded ; @@ -71,11 +71,7 @@ where { ?PIQ_measure ?PIQ ; ?VIQ_measure ?VIQ ; ?DX_measure ?dx . - + bind(IF((?GenderCoded ="1" || ?GenderCoded ="Male"^^xsd:string), "Male"^^xsd:string,"Female"^^xsd:string) as ?Gender) . - - - - -} order by ?study +} order by ?study From 59efc2e3bc1c073c4ab5497a93d45962d10f5608 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Sat, 10 Feb 2024 19:28:42 -0500 Subject: [PATCH 3/5] simple2 query: make result sorted not only by study but then ?ID ?softwareLabel ?laterality ?softwareLabel ?volume to achieve clear and deterministic order which would group results per subject nicely and deterministically --- queries/simple2_query.sparql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/queries/simple2_query.sparql b/queries/simple2_query.sparql index 8cfa4dd..9343151 100644 --- a/queries/simple2_query.sparql +++ b/queries/simple2_query.sparql @@ -74,4 +74,4 @@ where { bind(IF((?GenderCoded ="1" || ?GenderCoded ="Male"^^xsd:string), "Male"^^xsd:string,"Female"^^xsd:string) as ?Gender) . -} order by ?study +} order by ?study ?ID ?softwareLabel ?laterality ?softwareLabel ?volume From 8c9dc4370ac57eb241d699f825fb9e5d9052ac44 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Sat, 10 Feb 2024 21:43:40 -0500 Subject: [PATCH 4/5] simple2 query: remove excessive indentation and empty lines --- queries/simple2_query.sparql | 93 +++++++++++++++++------------------- 1 file changed, 45 insertions(+), 48 deletions(-) diff --git a/queries/simple2_query.sparql b/queries/simple2_query.sparql index 9343151..0f8634f 100644 --- a/queries/simple2_query.sparql +++ b/queries/simple2_query.sparql @@ -19,59 +19,56 @@ prefix ilxb: select distinct ?study ?ID ?Age ?dx ?Gender ?FIQ ?PIQ ?VIQ ?tool ?softwareLabel ?federatedLabel ?laterality ?volume where { - ?measure a/rdfs:subClassOf nidm:DataElement; - rdfs:label ?softwareLabel; - nidm:measureOf ilxb:ilx_0112559 ; - nidm:datumType ilxb:ilx_0738276 . - OPTIONAL {?measure nidm:isAbout ?federatedLabel }. - OPTIONAL {?measure nidm:hasLaterality ?laterality }. + ?measure a/rdfs:subClassOf nidm:DataElement; + rdfs:label ?softwareLabel; + nidm:measureOf ilxb:ilx_0112559 ; + nidm:datumType ilxb:ilx_0738276 . + OPTIONAL {?measure nidm:isAbout ?federatedLabel }. + OPTIONAL {?measure nidm:hasLaterality ?laterality }. - ?tool_entity a prov:Entity; - ?measure ?volume . + ?tool_entity a prov:Entity; + ?measure ?volume . - ?tool_act a prov:Activity ; - prov:qualifiedAssociation [prov:agent [nidm:NIDM_0000164 ?tool]] ; - prov:qualifiedAssociation [prov:agent [ndar:src_subject_id ?ID]] . - ?tool_entity prov:wasGeneratedBy ?tool_act . + ?tool_act a prov:Activity ; + prov:qualifiedAssociation [prov:agent [nidm:NIDM_0000164 ?tool]] ; + prov:qualifiedAssociation [prov:agent [ndar:src_subject_id ?ID]] . + ?tool_entity prov:wasGeneratedBy ?tool_act . - ?as_activity prov:qualifiedAssociation [prov:agent [ndar:src_subject_id ?ID]] . + ?as_activity prov:qualifiedAssociation [prov:agent [ndar:src_subject_id ?ID]] . + # find age data element uuid + {?age_measure a nidm:PersonalDataElement ; + nidm:isAbout ilx:ilx_0100400 . + } + # find sex data element uuid + {?sex_measure a nidm:PersonalDataElement ; + nidm:isAbout ilxb:ilx_0101292 . + } + # find diagnosis data element uuid + {?DX_measure a nidm:PersonalDataElement ; + nidm:isAbout ncit:Diagnosis . + } + # find fiq data element uuid + {?FIQ_measure a nidm:PersonalDataElement ; + nidm:isAbout ilxb:ilx_0739365 . + } + # find piq data element uuid + {?PIQ_measure a nidm:PersonalDataElement ; + nidm:isAbout ilxb:ilx_0739363 . + } + # find viq data element uuid + {?VIQ_measure a nidm:PersonalDataElement ; + nidm:isAbout ilxb:ilx_0739359 . + } - # find age data element uuid - {?age_measure a nidm:PersonalDataElement ; - nidm:isAbout ilx:ilx_0100400 . + ?as_entity prov:wasGeneratedBy ?as_activity ; + ?age_measure ?Age; + ?sex_measure ?GenderCoded ; + ?FIQ_measure ?FIQ ; + ?PIQ_measure ?PIQ ; + ?VIQ_measure ?VIQ ; + ?DX_measure ?dx . - } - # find sex data element uuid - {?sex_measure a nidm:PersonalDataElement ; - nidm:isAbout ilxb:ilx_0101292 . - } - # find diagnosis data element uuid - {?DX_measure a nidm:PersonalDataElement ; - nidm:isAbout ncit:Diagnosis . - - } - # find fiq data element uuid - {?FIQ_measure a nidm:PersonalDataElement ; - nidm:isAbout ilxb:ilx_0739365 . - } - # find piq data element uuid - {?PIQ_measure a nidm:PersonalDataElement ; - nidm:isAbout ilxb:ilx_0739363 . - } - # find viq data element uuid - {?VIQ_measure a nidm:PersonalDataElement ; - nidm:isAbout ilxb:ilx_0739359 . - } - - ?as_entity prov:wasGeneratedBy ?as_activity ; - ?age_measure ?Age; - ?sex_measure ?GenderCoded ; - ?FIQ_measure ?FIQ ; - ?PIQ_measure ?PIQ ; - ?VIQ_measure ?VIQ ; - ?DX_measure ?dx . - - bind(IF((?GenderCoded ="1" || ?GenderCoded ="Male"^^xsd:string), "Male"^^xsd:string,"Female"^^xsd:string) as ?Gender) . + bind(IF((?GenderCoded ="1" || ?GenderCoded ="Male"^^xsd:string), "Male"^^xsd:string,"Female"^^xsd:string) as ?Gender) . } order by ?study ?ID ?softwareLabel ?laterality ?softwareLabel ?volume From add998da8fc474cb74b2fb5b89f52acc3ec70c2a Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Sun, 11 Feb 2024 12:32:59 -0500 Subject: [PATCH 5/5] [DATALAD RUNCMD] Regenerate simple2_query_output.csv using current version of query === Do not change lines below === { "chain": [], "cmd": "bash -c 'GRAPHDB_URL=http://localhost:8889/bigdata; export GRAPHDB_API_URL=\"$GRAPHDB_URL/sparql\"; output=queries/simple2_query_output.csv; /usr/bin/time curl -X POST \"${{GRAPHDB_API_URL}}\" --data-binary \"@queries/simple2_query.sparql\" -H \"Accept: text/csv\" -H \"Content-Type: application/sparql-query\" >| \"$output\"'", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^ --- queries/simple2_query_output.csv | 61701 +++++++++++++++++++++++------ 1 file changed, 48502 insertions(+), 13199 deletions(-) diff --git a/queries/simple2_query_output.csv b/queries/simple2_query_output.csv index 47725cf..faba351 100644 --- a/queries/simple2_query_output.csv +++ b/queries/simple2_query_output.csv @@ -1,13200 +1,48503 @@ study,ID,Age,dx,Gender,FIQ,PIQ,VIQ,tool,softwareLabel,federatedLabel,laterality,volume -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1737349E7 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,690.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1392.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,5058.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4268.4004 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2054.4001 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6442.8003 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9226.801 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,649.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1134.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4868.4004 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4773.6 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2073.6 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6826.8003 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9673.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,219150.02 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,715438.8 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,517752.03 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1741934E7 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,447.6 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1492.8 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3850.8 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4287.6 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1869.6001 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6295.2 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8888.4 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,417.6 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1911.6001 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3904.8 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4095.6 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2049.6 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6235.2 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8799.601 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,190454.4 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,658274.44 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,481802.4 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3861.6 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,16778.4 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,2137.2002 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3085.2002 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4814.4004 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2812.8 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,4294.8003 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,2445.6 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,7984.8003 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3550.8 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,9694.801 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,10522.801 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2636.4001 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,8707.2 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,20829.602 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,9103.2 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,17161.201 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,12114.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,894.00006 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6783.6 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2629.2002 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,11818.801 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,8870.4 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7057.2 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1129292.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1109568.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1109522.4 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,506570.75 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,988080.4 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,972398.4 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1462175.4 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15682.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,201965.14 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,203729.5 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,405694.62 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1511304.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,252090.98 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,254479.78 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57660.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,679292.75 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,969825.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7303.6 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,386.1 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13164.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56193.1 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7264.4 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3549.3 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,51946.7 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7661.9 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2748.8 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,3538.5 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1670.3 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,716.5 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2519.5 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21086.8 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4462.2 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1772.9 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,548.6 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,609.2 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4423.9 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,5.2 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,398.5 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1092345.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1080684.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1080635.4 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,511491.75 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,978057.4 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,969970.4 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1396347.4 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8087.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,199707.42 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,200139.17 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,399846.6 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1448998.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,253094.2 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,258397.56 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55251.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,657520.75 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,966474.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3400.4 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,303.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12366.1 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,44155.4 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7072.7 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3018.4 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1635165.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,272877.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,271991.5 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64602.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,736562.5 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1031597.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,11695.4 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,513.7 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14294.3 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61611.9 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7592.1 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4472.9 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5864.7 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2329.5 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1466.6 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2091.7 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,23303.3 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4048.4 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1918.8 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1326.6 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,694.6 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4658.8 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,42.1 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,630.4 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,11062.5 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,384.2 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13427.8 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,65622.9 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,15978.001 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,10333.2 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,795.60004 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6512.4004 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,274218.44 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64470.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,731780.3 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1082498.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4604.1 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,1030.9 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13912.9 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54665.3 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1717.3 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,867.9 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,737.8 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4201.1 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1215410.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1185950.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1186326.6 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,544868.5 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1058830.6 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1034101.6 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1522489.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,24729.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,211912.3 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,210728.81 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,422641.1 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1218425.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1218338.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,556866.3 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1095930.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1085344.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1568537.5 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10586.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,232931.08 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,228307.6 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,461238.7 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1666342.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,282647.84 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.4 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,482.7 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4061.6 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,716.7 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11792.7 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55132.6 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7355.1 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4453.7 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6034.4 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1926.3 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4118.3 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1424.5 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,646.4 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3738.5 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,20.8 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,519.4 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1832.8 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,191.3 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,792.6 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,437.1 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,571.6 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,441.2 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,714.7 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7641.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4489.4 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5878.7 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2075.2 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4364.6 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1893.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,633.4 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4379.8 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,29.1 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,734.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1085.6 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,232.5 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1745634E7 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,397.2 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1412.4 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4227.6 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4028.4001 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1780.8 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5390.4004 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8205.601 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,543.60004 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1502.4 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4122.0 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4158.0 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1693.2001 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5523.6 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7861.2 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,262017.61 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,667594.8 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,481668.03 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1861.8 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,19141.201 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,12512.4 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2259.6 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,14583.601 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,9615.601 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,8131.2 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,4506.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,17677.201 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,2155.2002 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,4164.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4682.4004 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2580.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3456.0002 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1980.0001 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,9210.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,4471.2 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,13368.001 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,12556.801 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,3496.8 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,10738.801 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,25827.602 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,10544.4 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2848.7 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,261.5 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12611.8 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60977.0 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7393.7 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3484.7 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5320.1 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1597.2 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1528.8 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,10747.2 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3855.6 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,13207.2 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,13051.2 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3478.8 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,10956.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,23440.8 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,10195.2 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,17829.602 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,10326.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,878.4 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6300.0005 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1772.4 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5190.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4430.4004 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2182.8 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,9968.4 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1741925E7 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,746.4 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1766.4 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4012.8 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4142.4004 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1971.6001 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5766.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8797.2 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,604.80005 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1681.2001 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4464.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4196.4004 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1994.4 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5916.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8496.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,190942.81 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,575232.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,485770.8 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4502.4004 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4119.6 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2334.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,7012.8003 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9864.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,298684.8 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,633589.25 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,554889.6 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1745756E7 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,471.6 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1579.2001 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3748.8 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3654.0002 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1500.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,6829.2 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3776.4001 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1854.0001 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,9225.601 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,10920.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,9585.601 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,1886.4 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,10236.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,7831.2 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6522.0005 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3067.2002 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,14911.2 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1818.0001 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4194.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,3813.6 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1724.4 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3903.6 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1698.0001 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,6902.4004 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3688.8 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,52670.5 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7300.1 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4227.8 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4778.8 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1617.4 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3086.1 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1304.2 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,467.4 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3582.1 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,31.3 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,491.8 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4982.4004 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,589.2 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,52983.6 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12712.801 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8184.0005 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4104.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5211.6 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1526.4 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3934.8 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1044.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,597.60004 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4638.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,9.6 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,1.2 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,205.20001 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,289.2 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,5328.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2113.2002 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2658.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3223.2002 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,12040.801 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,820.80005 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,7299.6 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5898.0 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9070.801 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,650.4 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1455.6001 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4052.4001 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4027.2002 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1971.6001 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6144.0 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8781.601 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,232376.4 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,508612.8 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,471422.4 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,12388.801 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2685.6 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,13224.001 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8847.601 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,7576.8003 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3410.4001 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,16639.201 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2253.6 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4353.6 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,6171.6 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1809.6001 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,5442.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,2227.2002 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9205.2 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4413.6 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,12556.801 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,11755.2 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3320.4001 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,12318.001 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1476.0 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4017.6 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3927.6 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1856.4 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,532.0 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13446.5 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52953.4 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7868.4 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5836.8003 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8799.601 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,408.00003 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1138.8 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3514.8 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3936.0002 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1742.4 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5955.6 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8438.4 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,261261.61 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,644290.8 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,481968.03 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1192.8 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,883.2 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,619.2 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5024.4004 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,10.8 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1418.9 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18179.1 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1278.6 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,559.7 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,475.6 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,579.7 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,877.3 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,181.4 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,900.8 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1211400.0 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1201077.0 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1201681.8 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,554774.94 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1076860.8 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1069520.8 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1578780.8 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7340.0 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,222489.5 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,225564.31 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,448053.8 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1625197.0 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,276880.44 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,277894.5 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64271.0 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,727837.94 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1066423.0 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3191.5 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3889.3 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,25.7 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,613.8 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,926.6 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1427460 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,500978 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,441935 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5702.4004 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,525.60004 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,50566.8 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12676.801 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8275.2 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4072.8 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5467.2 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1638.0001 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,535.2 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1272.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16803.602 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3795.6 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1483430 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,591336 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,409892 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,11187.601 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,277.2 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,59661.6 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13882.801 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8764.801 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3427.2002 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4684.8003 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1646.4 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,609.60004 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1646.4 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18610.8 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3748.8 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1135.2001 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,808.80005 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,482.40002 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5581.2 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.400002 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6514.8003 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,313.2 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,57922.8 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13610.4 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8703.601 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3682.8 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4912.8003 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1568.4 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4207.2 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1113.6001 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,459.6 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,5398.8003 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,54.000004 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,242.40001 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,280.80002 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,5228.4004 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1766.4 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3696.0002 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,4188.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,7018.8003 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,4485.6 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2409.6 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,10233.601 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,11608.801 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,11764.801 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2335.2002 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,12440.4 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8694.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6812.4004 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3208.8 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,17568.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1957.2001 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4749.6 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1438.8 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3410.4001 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1082.4 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,370.80002 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4736.4004 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.800001 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,3.6000001 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,243.6 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,282.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,5431.2 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2278.8 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3013.2002 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,4128.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,5955.6 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3114.0002 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1041.7 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,777.0 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3898.2 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2406.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,8412.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,12619.2 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,11239.2 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2581.2002 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,9398.4 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8848.801 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6825.6 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,2676.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,17216.4 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2040.0001 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4194.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,3404.4001 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1782.0001 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,4425.6 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1478.4 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1376180 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,544438 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,376969 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,9682.801 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,243.6 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,57138.004 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14751.601 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8487.601 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3616.8 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4671.6 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1546.8 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,506.40002 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1964.4 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17911.201 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3397.2002 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1171.2001 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,762.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,410.40002 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4810.8003 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,18.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,10552.801 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,327.6 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,58836.004 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14578.801 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8072.4004 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3630.0002 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,744.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,547.2 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4872.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,12.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2884.8 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,10678.801 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,8652.0 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3405.6 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,7399.2 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,16483.201 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,8418.0 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,15332.4 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,7932.0005 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1356.0 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,5444.4004 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,552.9 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,490.6 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,624.6 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,832.2 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,53292.004 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14283.601 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7803.6 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3427.2002 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4075.2002 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1610.4 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,504.00003 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1568.4 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18424.8 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3249.6 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,982.80005 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,775.2 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,452.40002 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4682.4004 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,14.400001 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4633.2 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,304.80002 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,376.80002 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,55400.402 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,47593.203 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14338.801 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12493.2 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7771.2 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8894.4 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3528.0002 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3208.8 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4005.6 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4740.0 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1502.4 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1423.2001 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3168.0002 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3520.8 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1027.2001 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1093.2001 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,452.40002 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,510.00003 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4612.8003 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4852.8003 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,13.200001 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,8.400001 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,26.400002 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,12.0 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,248.40001 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,211.20001 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,268.80002 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,318.0 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4305.6 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4473.6 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1526.4 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1851.6001 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2706.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2731.2002 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3204.0002 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3962.4001 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,5809.2 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,6835.2 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3597.6 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1626.0001 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,7086.0005 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,8629.2 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,7633.2 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,1928.4 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,10906.801 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,6357.6 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6430.8003 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,2500.8 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,8414.4 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1548.0001 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3603.6 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,3253.2002 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2080.8 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3583.2002 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1969.2001 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,5972.4004 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3088.8 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,722.2 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,200.5 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1165.4 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,588.3 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,797.2 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,757.3 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1039.8 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,17.6 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,408.1 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4801.6 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,385.4 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11822.6 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,51140.8 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7614.2 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3604.8 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4961.9 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1693.1 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3609.7 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1505.7 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,670.0 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4015.9 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,24.9 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,333.6 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1738199E7 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,748.80005 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1552.8 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4525.2 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4068.0002 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1828.8 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6104.4004 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,10479.601 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,694.80005 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1363523.0 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1339189.0 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1339526.9 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,642178.3 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1203140.9 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1183965.9 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1615759.4 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,19175.0 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,235682.7 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,237466.84 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9477.601 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3946.8 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,12637.2 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,9490.801 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,4292.4004 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,12294.001 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,21588.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,8745.601 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,16389.602 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,12040.801 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,981.60004 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6106.8003 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2944.8 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5193.6 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3296.4001 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2292.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,9213.601 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,14259.601 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,10780.801 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2175.6 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1166690.0 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1151991.0 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1152322.9 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,579280.25 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1033370.9 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1022190.9 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1346723.5 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11180.0 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,191611.08 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,190802.55 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,800.2 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,487.1 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,541.8 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,559.2 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,788.4 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,473149.56 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1716332.0 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,322879.66 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,319298.66 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64732.0 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,837021.3 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1179563.0 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,11423.1 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,294.5 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15286.7 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,64159.4 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7886.1 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,5445.9 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5541.8 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2003.1 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1008.0 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,3482.7 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19624.1 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4019.3 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1709.7 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,4158.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2053.2002 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,9817.2 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,12486.001 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,10652.4 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2805.6 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,10365.601 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,7222.8003 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6470.4004 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3666.0002 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,12680.4 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2046.0001 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,11319.601 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,8190.0005 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,6675.6 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,19818.0 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,8607.601 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,13158.001 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,8119.2 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,934.80005 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,5368.8003 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1851.6001 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3972.0002 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,2043.6001 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,10605.601 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,4520.4004 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,13537.2 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,11625.601 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,4126.8003 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,11385.601 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,24708.002 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,10123.2 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,15036.001 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,10464.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,1100.4 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,7071.6 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4600.0 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1993.1 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,740.8 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1785.6 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20883.8 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3569.4 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1354.7 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,758.6 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,679.2 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3677.8 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.7 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,526.4 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4181.7 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,452.3 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13824.8 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58400.4 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6837.5 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3767.1 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4522.3 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1767.5 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3282.7 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1491.7 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,690.8 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3647.9 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,13.0 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,475.1 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,866.9 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3969.6 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,3522.0002 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1772.4 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,4507.2 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1651.2001 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9246.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3811.2002 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,11655.601 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,10136.4 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3856.8 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,9145.2 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,19026.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,8956.801 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,14223.601 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,8636.4 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,747.60004 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6146.4004 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1958.4 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,6205.2 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4222.8003 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2210.4001 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,8752.801 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,11487.601 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,9988.801 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2605.2002 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,11479.2 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,8062.8003 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7185.6 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3810.0002 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,14073.601 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1802.4 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3399.6 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4052.4001 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2437.2002 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,4174.8003 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1746905E7 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,672.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1321.2001 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3916.8 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3498.0002 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1735.2001 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5316.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8150.4004 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,609.60004 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1369.2001 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4005.6 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3727.2002 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1762.8 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5564.4004 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7927.2 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,188198.4 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,589465.25 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,457179.62 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1872.0001 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,2624.4001 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1585.2001 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,7216.8003 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3543.6 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3735.6 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,16777.201 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1902.0001 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3794.4001 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,5020.8003 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2064.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3096.0002 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1621.2001 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,9364.801 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3303.6 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,10910.4 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,10014.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2469.6 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,10392.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,23708.4 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,993863.0 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,975027.0 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,974852.75 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,458521.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,860654.75 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,845743.75 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1225343.2 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14911.0 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,168053.19 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,164297.95 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,332351.16 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1367933.0 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,227891.27 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,230630.34 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,52417.0 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,618252.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,843332.0 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7501.1 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,443.9 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12728.0 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52833.8 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6249.8 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3156.8 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5060.9 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1651.2 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,958.7 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1923.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19120.2 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3568.1 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1310.0 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1167.1 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,8658.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,16532.4 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,11158.801 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,1038.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6436.8003 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1822.8 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5404.8003 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8251.2 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,536.4 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1748.4 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4062.0002 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3480.0002 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1936.8 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5694.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8127.6 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,215690.4 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,655111.25 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,469155.62 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.174597E7 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,620.4 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1272.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4032.0002 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3522.0002 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1158531.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1146415.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1146405.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4454.4004 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4062.0002 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2599.2002 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3192.0002 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,2044.8 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,10350.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3762.0002 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,13405.2 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6391.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,449.4 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12759.4 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53062.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6685.7 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4205.6 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5590.5 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1843.2 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1200.6 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1585.2 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18523.7 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4521.2 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1867.1 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1005.4 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,873.7 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,489622.8 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3617.6 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,398.1 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11797.1 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53447.3 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7140.6 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2957.6 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4070.1 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1632.9 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,382413.62 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1471472.0 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,290270.53 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,289009.7 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57989.0 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,747606.25 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1019292.0 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6243.8 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,215.3 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11892.1 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55016.9 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1302897.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1285877.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1285959.9 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,616494.5 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1153754.9 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1140844.9 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1595191.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12910.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,229184.95 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,227243.36 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,456428.3 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1655931.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,308690.88 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,307803.66 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65438.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,800523.5 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1138221.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5613.2 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,607.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14977.1 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58555.7 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8159.2 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,5132.7 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13708.801 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9229.2 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3700.8 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5481.6 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1902.0001 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,520.3 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4494.8 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,59.0 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,318.4 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,9633.601 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3460.8 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,13099.2 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,25930.8 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,10684.801 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,17202.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,11836.801 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,837.60004 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6088.8003 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2362.8 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,7411.2 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4062.0002 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2582.4001 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,8768.4 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,14540.4 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,12258.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2617.2002 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,14372.4 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,7911.6 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7531.2 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3693.6 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,19279.201 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1926.0001 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,4310.4004 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4878.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1962.0001 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,4046.4001 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1725.6001 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,10653.601 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3693.6 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,12549.601 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,10615.2 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1984.8 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,11366.4 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,26188.8 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,10087.2 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,14700.001 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,10372.801 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,630.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6350.4004 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3974.4001 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2102.4001 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6253.2 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8780.4 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,205680.02 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,672837.6 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,10447.2 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,8773.2 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,4088.4001 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,9595.2 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,19156.8 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,8523.601 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,14722.801 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,8434.801 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1441.2001 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,5602.8003 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2005.2001 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,4404.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3786.0002 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1974.0001 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,9612.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,12754.801 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,11442.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,1858.8 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,10072.801 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,7928.4004 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,6835.2 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3901.2002 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,15492.001 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1922.4 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,4549.2 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4417.2 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68634.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,744023.56 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1086194.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7264.3 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,589.8 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16788.5 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61246.8 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8450.9 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4411.2 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6738.5 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2454.4 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1073.9 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2019.6 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22573.3 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4382.4 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,211.20001 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,49707.6 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12846.001 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8504.4 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3133.2002 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,3621.6 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1419.6001 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,534.0 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2533.2002 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19042.8 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4122.0 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1027.2001 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,571.2 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,457.2 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5304.0 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,16.800001 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4363.2 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,298.80002 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,50331.6 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13036.801 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1289030 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,463995 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,366028 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4586.4004 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8352.0 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3295.2002 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,3591.6 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1364.4 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4269.6 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1101.6001 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,402.00003 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4969.2 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4522.7 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1625.6 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3670.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1616.1 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,759.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4064.5 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,668.5 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1348.4 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,203.9 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,695.6 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,260.9 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,51567.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13375.2 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7428.0005 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2863.2002 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4374.0 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1340.4 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,601.2 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1575.6001 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3525.6 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3852.0002 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1766.4 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5234.4004 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8166.0005 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,463.2 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1414.8 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3758.4001 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4038.0002 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1849.2001 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5344.8003 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7864.8003 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,195248.4 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,590953.25 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,480573.62 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1512730 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,596853 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,433948 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6394.8003 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,331.2 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,55839.6 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15085.2 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9265.2 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4736.4004 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4648.8003 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1705.2001 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,705.60004 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2007.6001 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18038.4 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4016.4001 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1108.8 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,990.00006 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,540.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5256.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,24.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6082.8003 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,272.40002 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,56556.004 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14828.4 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9050.4 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4736.4004 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4525.2 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1651.2001 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4191.6 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1118.4 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,552.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,5088.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,8.400001 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,541.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3540.4 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,50.0 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,521.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5824.7 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,424.3 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12191.8 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54339.3 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6658.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3247.7 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4932.2 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1529.8 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3548.3 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1415.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,644.5 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3677.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,21.3 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,637.8 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1057.5 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,249.4 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,702.4 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,464.4 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,416.8 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,393.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,736.4 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1164090 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,407367 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,336648 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8134.8003 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,220.8 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1088789.8 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1620814.5 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14665.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,232803.8 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,236964.44 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,469768.25 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1676255.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,272078.97 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,275164.6 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,9033.601 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,10269.601 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2571.6 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,11224.801 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1456.8 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,6888.0005 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,19567.201 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,9847.2 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,15163.2 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,9680.4 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,843.60004 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,5834.4004 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,3053.3 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,149.5 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,673.6 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,389.2 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,497.6 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,341.8 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,543.3 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,7446.0005 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,7526.4004 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,2950.8 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,13495.2 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2234.4001 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4381.2 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4368.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2155.2002 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3536.4001 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1836.0001 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,8682.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3746.4001 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,11035.2 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,10076.4 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,2703.6 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,7935.6 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,16328.4 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,8880.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,14670.001 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,10318.801 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,826.80005 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,5331.6 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1434.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,4900.8003 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3676.8 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2134.8 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,8902.801 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,11192.4 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,10749.601 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2828.4001 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,11334.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,7790.4004 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7352.4004 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,2473.2002 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,15198.001 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1900.8 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3374.4001 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4651.2 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1874.4 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3795.6 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,2284.8 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,8287.2 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3758.4001 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,10580.4 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,9346.801 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1500900 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,580502 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,460323 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8133.6 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,463.2 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,53230.8 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1541580 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,582828 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,469423 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4851.6 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,326.40002 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,54312.004 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14672.4 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9296.4 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3703.2002 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4790.4004 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1736.4 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,548.4 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1284.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17962.8 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3399.6 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1148.4 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1065.6001 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,517.2 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5194.8003 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,18.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4255.2 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,252.00002 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,53836.8 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14230.801 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9073.2 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3800.4001 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4864.8003 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1635.6001 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3726.0002 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1138.8 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,483.6 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,5025.6 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,8.400001 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,43.2 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,241.20001 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,318.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4360.8003 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2012.4 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2746.8 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3267.6 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,7444.8003 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3632.4001 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2062.8 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,10582.801 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,13036.801 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,11856.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2221.2002 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3875.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,249.3 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3602.6 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6262.9 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2155.0 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,921.1 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1533.6 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20238.7 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4166.5 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1924.4 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,760.6 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,818.4 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,11544.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,9628.801 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2174.4001 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,7500.0005 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,21432.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,9745.2 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,15438.001 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,9602.4 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,925.2 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,5464.8003 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,8774.4 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,22568.4 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,9271.2 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,14630.4 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,8332.801 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,772.80005 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6088.8003 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1744021E7 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,710.4 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1429.2001 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3504.0002 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3732.0002 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1954.8 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5686.8003 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8839.2 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,2.4 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,272.40002 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,333.6 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,5294.4004 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1869.6001 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3381.6 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3901.2002 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,8493.601 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3930.0002 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2457.6 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,9216.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,11576.4 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1185555.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1170691.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1170980.6 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,593384.56 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1057787.6 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1046122.6 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1563386.6 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11665.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.8 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,548.4 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7094.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,456.3 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12358.4 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58260.4 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7311.8 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3746.9 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4887.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1933.1 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3746.2 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1639.7 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,558.6 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4076.7 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,11.6 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,545.3 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,997.5 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1375.2001 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3739.2002 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1042.8 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,495.6 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13586.4 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7833.6 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3798.0002 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4275.6 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1335775.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1323306.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1324367.8 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,615935.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1197792.8 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1188257.8 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1667536.4 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9535.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,252061.44 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,253064.34 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,505125.78 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1703891.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,307073.94 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,308861.03 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64370.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,790251.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1184225.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4246.7 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,642.2 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15133.1 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54482.4 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8600.3 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4069.1 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4968.9 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2060.4 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1043.9 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2324.5 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20277.4 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3820.9 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1754.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,857.9 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,575.9 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4123.3 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4297.4 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,87.5 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1086716.0 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1075227.0 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1075198.5 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,513745.6 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,954889.44 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,946959.44 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1329586.9 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7930.0 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,188696.23 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,186739.64 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,375435.88 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1477160.0 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,260971.77 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,252773.81 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55623.0 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,675423.56 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,944724.0 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3475.8 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,299.0 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13296.4 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7303.2 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,353.8 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13495.5 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1747026E7 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,4369.2 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,5691.6 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,2536.8 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2092.8 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,7365.6 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,12114.0 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,9514.801 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2702.4001 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,7138.8003 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,7248.0005 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6948.0005 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3146.4001 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,14716.801 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2251.2002 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3769.2002 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4095.6 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1994.4 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3652.8 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1138.8 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,7144.8003 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3904.8 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,12390.001 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,7095.6 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3926.4001 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,8066.4004 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,20275.201 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,7820.4004 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,14289.601 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,9250.801 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,763.2 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,4520.4004 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2488.8 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5598.0 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,2379.6 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1978.8 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,7159.2 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,14298.001 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,9642.0 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2749.2002 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,9284.4 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,7414.8003 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,6651.6 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3177.6 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,15460.801 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,445.2 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3205.8 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,262.3 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13025.6 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55223.7 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7930.9 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3773.0 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6076.0 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2053.7 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4491.0 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2129.7 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,634.1 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4151.8 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,33.8 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,420.1 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1083.7 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1369100 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,571037 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,380494 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3487.2002 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,151.20001 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,49611.6 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11838.0 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8299.2 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3567.6 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,193184.34 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,197106.75 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,390291.1 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1650455.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,294310.72 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,299073.8 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58517.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,756250.56 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1041794.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5766.9 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,537.1 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13330.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,50478.6 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7605.9 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4096.3 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5175.1 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1865.2 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,974.3 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5387.1 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1929.8 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1012.4 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1186.4 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18837.7 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4236.1 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1525.6 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,834.5 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,642.2 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3946.6 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,36.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,403.3 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,10641.601 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8052.0005 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,9.6 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,8.400001 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,235.20001 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,297.6 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4652.4004 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1911.6001 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3280.8 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,433.2 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,5208.0 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.400001 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,3.6000001 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,242.40001 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,361.2 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4194.0 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1500.0 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2521.2002 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3432.0002 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1750202E7 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,616.80005 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1194.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3189.6 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3480.0002 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1537.2001 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4782.0 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.400001 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,3.6000001 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,250.8 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,336.0 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4842.0 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1958.4 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3433.2002 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3774.0002 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,6669.6 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3813.6 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2278.8 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,8256.0 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,12878.4 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,10164.0 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2101.2002 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,11313.601 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8862.0 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6242.4004 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3465.6 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5210.4004 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,21.6 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7461.6 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,446.40002 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,54321.6 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12494.4 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8372.4 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3297.6 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4801.2 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1543.2001 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4309.2 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1222.8 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,14770.801 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1929.6001 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3380.4001 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,3942.0002 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2245.2002 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3766.8 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1540.8 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,7982.4004 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4107.6 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,11931.601 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,8260.801 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3271.2002 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,10794.0 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,19318.8 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,9289.2 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,15948.001 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,10784.4 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1144.8 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,5761.2 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2720.4001 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5359.2 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4856.4004 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2284.8 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,8468.4 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,14048.4 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,12280.801 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,1838.4 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,10984.801 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,8053.2 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,6678.0005 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3526.8 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,14426.4 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1748.4 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3534.0002 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4564.8003 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1970.4 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3909.6 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1854.0001 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,8109.6 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3868.8 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,10694.4 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,9092.4 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2534.4001 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,8768.4 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,22143.602 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,10309.2 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,15310.801 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,9973.2 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,940.80005 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6117.6 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,888.1 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,955.7 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4308.4 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,5.1 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,476.1 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6834.8 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,272.2 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14772.4 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64621.4 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7615.3 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5272.2 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5521.3 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1885.8 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4751.8 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1642.0 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,883.5 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4089.8 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.3 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,468.9 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1717.0 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,221.4 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,823.5 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,502.6 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,408.0 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,443.4 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1436.4 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3854.4001 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1060.8 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,571.2 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4569.6 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,9.6 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,15.6 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,249.6 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,300.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,5216.4004 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2174.4001 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3232.8 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3303.6 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,6981.6 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,4008.0002 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1902.0001 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,10273.2 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,15463.2 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,12649.2 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2662.8 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,12180.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,9460.801 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6998.4004 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3968.4001 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,17644.8 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2353.2002 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4387.2 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,5562.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2088.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,4695.6 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1464790 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,593415 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,409182 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,9558.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,213.6 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,56338.8 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13204.801 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8206.801 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4323.6 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4836.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1606.8 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,680.4 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2168.4001 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16747.201 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3756.0002 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1047.6001 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,715.2 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,616.80005 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4822.8003 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,18.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7234.8003 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,261.6 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,60400.8 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13353.601 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8083.2 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4438.8003 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4778.4004 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4857.6 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1733.1 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,870.8 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2186.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18066.1 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3660.3 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1588.2 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,696.3 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,591.2 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4135.1 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,10.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,421.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3763.7 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,206.2 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4893.6 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3132.0002 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,17396.4 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1801.2001 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3883.2002 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,5013.6 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2352.0 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3591.6 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,2150.4001 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,9729.601 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3956.4001 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,12546.001 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,11185.2 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2485.2002 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,10611.601 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,21649.201 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,11288.4 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,16924.8 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,10881.601 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,668.4 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6487.2 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,15907.2 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,11167.2 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1314330 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,530047 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,361726 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7660.8003 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,168.0 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,49594.8 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13747.2 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8052.0005 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3648.0002 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4198.8003 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1453.2001 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,609.60004 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2082.0 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16978.8 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3447.6 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1069.2001 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1111.2001 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,540.0 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4803.6 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.2 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7267.2 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,432.00003 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,51826.8 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,3094.8 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,13262.4 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,9486.0 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7713.6 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1741259E7 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,734.4 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1492.8 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4234.8003 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3807.6 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1995.6001 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6102.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9283.2 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,607.2 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1686.0001 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4167.6 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1877.7 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1189.2 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,647.1 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4809.8 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,29.9 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1735715E7 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,746.4 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1747.2001 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4614.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4269.6 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2229.6 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6729.6 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,10219.2 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,643.2 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1734.0001 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,18895.201 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,8706.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,14114.4 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,9249.601 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,1033.2001 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6352.8003 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,171.6 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1160.7 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,710.8 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,534.7 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,740.4 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,887.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,7040.4004 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,2716.8 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,15504.001 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2043.6001 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4725.6 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4021.2002 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2394.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3498.0002 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1321.2001 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9252.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3562.8 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,14976.001 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,10590.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3990.0002 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,10341.601 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,21460.8 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,11520.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,15808.801 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,11478.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1381.2001 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6205.2 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1819.2001 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5967.6 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3742.8 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2115.6 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,11590.801 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,14374.801 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,11798.4 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,1987.2001 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,12696.001 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,8107.2 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7480.8003 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3663.6 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,14841.601 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1786.8 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,5330.4004 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,5918.4004 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1794.0001 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3996.0002 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,2414.4001 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,8944.801 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3685.2002 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,14000.4 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,10072.801 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2436.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,9813.601 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,23734.8 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,11637.601 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,16003.2 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,10168.801 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,1010.4 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6742.8003 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4263.6 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2480.4001 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1680.0001 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4990.8003 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5741.9 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2098.2 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,897.1 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1251.3 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19823.6 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3802.4 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1719.5 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1040.5 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,836.7 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4380.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,16.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,471.1 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3767.2 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,361.3 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14359.1 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54564.2 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8534.5 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4252.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5839.1 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1897.3 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4207.9 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1821.1 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,692.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4205.9 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,11.5 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,580.3 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1032.7 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,191.7 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1100.1 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,654.3 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,510.7 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,632.9 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,878.4 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,9201.601 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,7419.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,2786.4001 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,7651.2 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,15944.4 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,6775.2 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,13234.801 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,8596.801 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,645.60004 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,4680.0 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1981.2001 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,3093.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,2593.2002 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1548.0001 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,7863.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,11461.2 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,7965.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,1984.8 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,8293.2 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,6375.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,5169.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,2901.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,9896.4 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1594.8 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,2491.2002 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,3654.0002 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1497.6001 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,2626.8 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1597.2001 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,6990.0005 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3162.0002 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,625.2 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1726.8 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17088.0 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3321.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,951.60004 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1080.0 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,384.0 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4545.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,18.0 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6433.2 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,319.2 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,51097.203 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12835.2 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7383.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3002.4001 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4327.2 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1191.6001 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3619.2002 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,924.00006 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,364.80002 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4346.4004 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,7.2000003 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,6.0 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,231.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,258.0 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,3820.8 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1959.6001 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2658.0 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,1964.4 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,3980.4001 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,2613.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1483.2001 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,8661.601 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,10225.2 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,8391.601 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2031.6001 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,9481.2 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,6171.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,4503.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,2979.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,10854.0 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1536.0 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3288.0002 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,3402.0002 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1998.0001 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3190.8 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1359.6001 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,5794.8003 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3031.2002 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,16989.602 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,6981.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,13723.2 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,8082.0005 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,572.4 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,5005.2 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1186504.0 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1173902.0 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1173095.6 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,508669.06 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1020960.7 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1011448.7 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1469910.6 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9512.0 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,217750.66 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,220655.92 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,438406.6 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1527521.0 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,254750.58 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,253918.5 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59479.0 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,700795.06 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1007241.0 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,216.0 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,818.1 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,489.4 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,672.9 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,527.6 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,760.3 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1264349.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1245634.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1244946.8 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,547243.56 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1103454.8 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7751.4 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4525.4 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6348.6 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2077.4 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,718.9 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1102.1 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18196.4 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4267.6 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1851.6001 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,6894.0005 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,4488.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,11157.601 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,10417.2 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2456.4001 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,8154.0005 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,20355.602 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,8959.2 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,14109.601 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,9697.2 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,699.60004 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,5798.4004 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1152518.0 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1143405.0 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1143825.1 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,559786.6 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1231403.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1284675.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1273821.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1274738.5 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,630232.8 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1130260.5 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1122790.5 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1473803.2 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7470.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,214077.9 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,213241.75 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,427319.66 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1623398.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,316011.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,314221.78 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61957.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,820370.8 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1118518.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3688.2 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,376.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13757.7 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62964.9 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8201.5 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3818.7 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5259.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2426.8 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,821.6 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1963.2 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19535.6 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4467.6 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1720.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,681.7 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,596.6 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4288.6 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,29.3 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,409.1 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2666.9 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,206.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,579.2 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,378.8 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,390.3 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1160053.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1146631.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1146706.4 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,540484.56 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1015509.4 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1005820.4 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1373295.2 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9689.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,203699.5 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,203638.31 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,407337.8 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1529246.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,268221.3 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,272263.28 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56181.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,715660.56 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1003866.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4342.2 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,489.7 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12662.4 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58432.3 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7045.8 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3621.3 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5354.6 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1796.1 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1041.2 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1969.5 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5260.3 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1514.1 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3784.2 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1489.1 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,793.6 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3802.4 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,48.1 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,463.4 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,653.4 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2204.4001 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,9024.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,15382.801 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,11427.601 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3562.1 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4960.7 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1935.3 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,722.5 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1730.8 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18263.9 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3659.1 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1376.9 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6941.0 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4003.5 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5880.5 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1962.4 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,811.2 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1803.2 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17844.4 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3525.9 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1544.8 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1034.6 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,694.5 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3623.4 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,65.3 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,365.5 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4205.2 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,200.0 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11085.9 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54752.8 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6833.2 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4030.3 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5851.2 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1838.1 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3725.1 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1616.2 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,749.7 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3662.8 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,25.6 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,456.3 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,165.0 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,908.0 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,389.5 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,634.3 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,488.7 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,867.1 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7542.3 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3592.6 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5190.8 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1951.9 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,874.4 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1422.7 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21455.1 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4743.1 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1664.8 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,916.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,386.3 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,666.8 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1291310 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,481529 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,358977 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7024.8003 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,315.6 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3924.5 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,30.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,512.7 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4537.7 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,717.4 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11588.3 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54353.2 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6737.6 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4356.8 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5437.3 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1718.9 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4457.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1608.1 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,646.4 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,7965.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,7658.4004 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1926.0001 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,6862.8003 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,190870.03 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,188623.48 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,379493.5 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1499361.0 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,282943.78 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,276842.88 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57496.0 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,739138.6 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,996267.0 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2947.4 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,379.5 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12995.0 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60570.2 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7576.8 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3485.0 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5202.9 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1817.0 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,688.4 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1189.2 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18038.7 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5563.0 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,226.1 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,17709.4 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,64305.1 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11763.5 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,45166.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7277.8 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3497.9 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5113.3 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1486.5 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3627.4 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1390.1 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,597.7 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3994.8 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,5.9 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,492.6 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1281.3 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,243.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,760.3 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,394.4 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,524.1 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,494.1 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,585.2 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1742518E7 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,633.60004 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,558.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4806.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,18.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5054.4004 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,541.2 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,51602.402 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12464.4 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7884.0005 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4030.8 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4812.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4365.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1829.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,773.6 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,791.4 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4110.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,43.6 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7686.3 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3502.8 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5235.4 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1957.6 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,975.9 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1642.6 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21067.3 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3914.1 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1554.8 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,830.7 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,600.7 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3934.7 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,22.6 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,422.9 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4354.3 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,772.2 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13300.9 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60986.7 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7282.6 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3852.6 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5272.9 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1812.5 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4188.7 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1696.8 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,592.4 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4020.5 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,22.9 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,491.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1012.9 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,233.7 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,784.9 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,457.1 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,620.3 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,514.1 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,786.8 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1962.0001 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,8827.2 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,13389.601 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,12198.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2449.2002 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,11127.601 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,8965.2 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7737.6 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3703.2002 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,14746.801 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,2005.2001 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,4353.6 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4212.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1918.8 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,4402.8003 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1716.0001 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,7118.4004 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,2949.6 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,10815.601 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,11967.601 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1929.6001 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,9654.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,26977.201 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,8540.4 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,51640.8 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12514.801 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7897.2 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3888.0002 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4759.2 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1665.6001 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,808.80005 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1548.0001 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16669.201 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4028.4001 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1106.4 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1200.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,563.4 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,653.5 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,527.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,943.8 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,4539.6 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2404.8 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,8514.0 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,10956.0 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,12789.601 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2407.2002 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,9387.601 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,7929.6 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6427.2 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,15081.601 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,10069.2 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,1068.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,7095.6 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,826.80005 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2276.4001 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16617.602 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3260.4001 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1135.2001 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1288.8 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,525.60004 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5281.2 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,14.400001 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7431.6 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,276.0 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,54494.402 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13472.4 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9122.4 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3956.4001 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5306.4004 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1831.2001 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3394.8 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1136.4 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,504.00003 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4984.8003 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,10.8 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,14.400001 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,190.8 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,259.2 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4000.8 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1815.6001 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2529.6 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,2686.8 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,6183.6 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1281890 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,508687 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,372151 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3381.6 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,306.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,48942.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13111.2 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9116.4 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3088.8 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6708.0005 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1887.6001 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5313.6 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4261.2 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1367630 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,532232 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,399221 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5974.8003 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,151.20001 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,52180.8 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12997.2 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8485.2 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3154.8 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4767.6 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1656.0001 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,405.6 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1179.6001 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18832.8 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3980.4001 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1114.8 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,768.0 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,511.2 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1402360 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,512551 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,400177 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,1011.84845 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,5386.3525 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,216937.81 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,220583.95 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,437521.75 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1555670.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,265009.2 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,272562.12 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62971.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,721629.3 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1037975.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7572.5 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,502.8 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15725.9 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59944.7 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7323.1 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4635.6 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5788.2 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,491.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5675.6 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,487.5 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13107.5 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63387.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7850.2 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4754.4 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5562.4 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1961.2 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4232.3 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1708.8 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,684.3 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3812.5 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,25.8 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,542.3 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2149.8 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1078.0 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,7738.8003 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,11680.801 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,10729.2 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2779.2002 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,11623.2 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,8616.0 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7977.6 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3819.6 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,12895.2 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1676.4 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3602.4001 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4789.2 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2479.2002 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3219.6 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,2012.4 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,7767.6 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3742.8 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,12116.4 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,11020.801 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2163.6 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,10267.2 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,24584.4 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,10687.2 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,13417.2 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,9705.601 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,583.2 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,5845.2 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7340.4004 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,245336.4 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,616924.8 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,417584.4 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1600588.8 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,18242.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,216887.83 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,214961.66 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1006829.1 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1000019.1 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1369345.8 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6810.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,604.4 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5439.3 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,522.5 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15642.8 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1236554.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1219383.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1219441.9 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,577702.1 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1090033.9 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1076983.9 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1553148.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13050.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,218290.14 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,217174.62 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,435464.75 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1607475.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,288563.53 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,289138.6 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61735.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,758902.1 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1074703.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5237.8 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,264.8 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13407.4 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3680.4001 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,14276.4 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2127.6 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3957.6 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,6201.6 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1717.2001 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,4767.6 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1890.0001 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9820.801 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3565.2002 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,12717.601 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,10472.4 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3168.0002 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,11516.4 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,23415.602 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,9124.801 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,17626.8 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,12429.601 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1603.2001 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6760.8003 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2013.6001 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,6938.4004 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4045.2002 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2144.4001 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,8456.4 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,12993.601 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,10945.2 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2677.2002 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,13459.2 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,8328.0 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7120.8003 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3976.8 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,13346.4 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1815.6001 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,4144.8003 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4419.6 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2719.2002 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,4192.8003 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,2324.4001 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,8299.2 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3853.2002 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,12590.4 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,11184.0 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2400.0 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,11089.2 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,25504.8 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,9909.601 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,15673.2 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,12792.001 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,1128.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4257.8 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5497.6 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1808.8 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4009.1 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1715.6 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,738.1 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4368.3 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,25.2 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,485.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,696.2 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,431849.5 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1676681.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,296279.25 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,291593.28 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62860.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,778427.5 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1081839.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,10589.9 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,582.1 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13431.7 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62797.2 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8133.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1574.4 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4208.4004 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1186.8 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,434.40002 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4704.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,18.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,237.6 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,292.80002 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4282.8003 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2119.2002 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2731.2002 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,2548.8 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,4554.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,4245.6 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1993.2001 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,7974.0005 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1744476E7 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,427.2 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1560.0001 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4352.4004 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4215.6 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1705.2001 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5328.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8004.0005 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,422.40002 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1695.6001 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4381.2 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4407.6 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1884.0001 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5385.6 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8235.601 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,176473.2 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,510108.03 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,411595.22 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1207242.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1189325.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1189349.1 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,537571.3 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1054574.1 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1040426.06 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1507375.6 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14148.0 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6684.303 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,211.7157 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,65676.69 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14355.659 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7838.249 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3325.4624 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4619.5986 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1491.5466 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,648.49854 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3827.4 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,75.9 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,349.9 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3604.4 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,500.3 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12796.3 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,48091.8 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8357.4 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4167.3 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5543.8 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1971.8 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3905.2 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1672.6 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,784.5 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3599.3 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,26.4 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,436.2 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1201.2 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,122.2 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59630.2 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7695.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3935.4 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5491.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2032.1 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,958.6 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2234.6 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20169.8 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4093.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3848.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5311.7 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2069.2 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,887.1 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1802.2 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21579.2 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3899.6 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1722.8 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,816.8 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1203287.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1188720.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1188899.9 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,562778.5 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1056210.9 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1044951.9 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1511351.9 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11259.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,210579.08 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,210528.28 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,421107.34 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1585672.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,282011.4 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,280767.1 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58764.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,741833.5 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1042327.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5273.8 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,65017.2 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8133.4 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4412.9 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6597.6 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2378.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4223.5 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1878.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,624.1 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4634.5 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,23.4 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,849.2 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1758.2 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,196.5 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1034.8 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1808.4 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1117.1 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,761.3 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4335.6 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,40.9 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,399.4 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6796.1 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,284.6 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12676.9 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59622.2 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7597.2 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1200.676 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,476.83716 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5373.001 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,12.397766 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4567.1465 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,354.76685 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,65764.43 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14163.971 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7759.094 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3479.004 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4544.2583 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1461.029 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4483.223 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,993.72864 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,397.6822 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,5087.8525 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,9.536743 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,259.3994 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,393.8675 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4796.982 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1810.0739 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2868.6523 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3384.59 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,5815.506 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3684.9976 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1964.5691 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,9016.99 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,11240.959 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,9771.347 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2730.3696 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,9509.087 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,7064.8193 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,5887.0317 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3036.499 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1012.80005 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,495.6 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,5031.6 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.400001 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,8.400001 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,260.40002 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,326.40002 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,5256.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2280.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3350.4001 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3358.8 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,5844.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3939.6 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2163.6 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,7789.2 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,13201.2 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,12292.801 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2386.8 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,12271.2 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8820.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,56020.8 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15164.4 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8024.4004 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4264.8003 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5140.8003 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1729.2001 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,871.2 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1663.2001 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20526.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3656.4001 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,966.00006 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1138.8 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,540.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5288.4004 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,21.6 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5752.8003 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,302.40002 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,57768.004 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15372.001 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7972.8003 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4416.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5218.8003 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1646.4 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3870.0002 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1453.3997 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19984.246 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4222.87 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1092.9108 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1246773.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1234131.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1234288.6 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,581842.3 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1106455.6 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1097411.6 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1569974.4 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9044.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6096.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3073.2002 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,17702.4 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2361.6 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1599.6001 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4280.4004 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1081.2001 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,559.2 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,5014.8003 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.2 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,10.8 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,286.80002 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,285.6 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,6025.2 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2164.8 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3778.8 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3775.2002 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,5622.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,5132.4004 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2466.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,8445.601 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,11042.4 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,9936.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2242.8 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,13278.001 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,12337.2 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,3216.0002 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,12559.2 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1742886E7 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,549.60004 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1418.4 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3621.6 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3700.8 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1953.6001 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6506.4004 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8850.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,420.00003 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1238.4 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3892.8 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3850.8 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1035.7 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3574.8 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4546.8003 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2560.8 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,2685.6 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1792.8 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,8690.4 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3495.6 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,11937.601 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,10098.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3039.6 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,10118.4 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,20284.8 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,7989.6 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,16558.8 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,11283.601 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1105.2001 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6181.2 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2006.4 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5716.8003 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4118.4004 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,781157.2 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1055821.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4267.5 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,276.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14926.7 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63830.9 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7902.3 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3798.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6034.6 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2109.5 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1007.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2876.9 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,23297.6 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4173.3 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1776.1 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,877.1 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,764.4 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4686.2 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,66.4 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,461.2 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5104.4 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,504.8 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14980.7 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,66461.1 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3549.6 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,235.20001 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,54517.203 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13551.601 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8703.601 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3634.8 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5091.6 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1633.2001 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3984.0002 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1297.2001 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,510.00003 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,5174.4004 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.400001 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,7.2000003 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,183.6 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,330.0 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4587.6 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2040.0001 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3256.8 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,222834.72 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,225488.52 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,448323.25 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1658856.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,285952.3 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,295890.03 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63193.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,760849.3 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1109842.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1093595.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1093460.2 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,526157.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,976938.25 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,964330.25 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1374915.9 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12608.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,187378.34 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,188770.92 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,376149.25 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1458227.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,262244.97 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,263912.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59864.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,693713.0 -ABIDE UCLA_1 Site,0051225,1.233E1,1,Male,1.11E2,1.02E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,962163.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3247.2002 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1512.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,7628.4004 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,2938.8 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,10008.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,8016.0005 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1848.0001 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,6964.8003 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,21644.4 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,9201.601 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,12148.801 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,8708.4 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,661.2 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,5762.4004 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1468530 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,567331 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,418768 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3594.0002 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,216.00002 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,52924.8 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13221.601 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8821.2 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3518.4001 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5266.8003 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1710.0001 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,536.4 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1459.2001 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18597.602 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3850.8 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1345.2001 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,818.4 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,526.80005 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5384.4004 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7582.6 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3721.1 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5865.2 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1862.4 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4334.4 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1578.7 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,621.8 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4524.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,22.9 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,349.3 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1322.7 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,173.1 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,826.9 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,432.2 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1093070.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4205.3 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,274.4 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13473.1 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57299.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7866.7 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3990.7 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5822.9 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2089.3 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1157.4 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1743.9 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21350.6 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4195.6 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1737.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,858.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,784.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4171.7 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,29.1 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,319.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4134.6 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,314.3 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12140.4 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56474.5 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7580.7 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4143.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5882.2 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1920.9 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4493.4 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1850.6 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22763.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3945.6 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1598.7 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1072.6 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,660.5 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4137.1 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,83.4 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,477.8 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5357.7 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,285.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15307.4 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60614.1 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7356.8 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4673.2 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6125.9 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2035.3 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4196.3 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1806.6 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,688.8 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4192.5 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,47.3 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,594.3 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1127.7 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3505.2002 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,5864.4004 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,836.6 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,217.7 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,791.6 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,449.6 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,389.8 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,371.1 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,873.4 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6822.3 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3792.5 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1849.2001 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4534.8003 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3963.6 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1858.8 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5979.6 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,10093.2 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,201513.61 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,724048.8 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,534231.6 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,583.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13375.7 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59407.2 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4020.6 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1455.1 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,882.6 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,880.8 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4054.7 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,59.4 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,599.9 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4078.7 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,416.3 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11975.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,51345.2 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7906.2 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4046.6 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,3733.9 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1337.2 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,31.2 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1193550 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,443760 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,341502 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5086.8003 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,229.20001 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1377.6001 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,4212.0 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3795.6 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1569.6001 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,7398.0005 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,9494.4 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,8227.2 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,1854.0001 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,11403.601 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,6943.2 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,6153.6 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3464.4001 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,10527.601 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1562.4 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3420.0002 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,3806.4001 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2276.4001 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3090.0002 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1684.8 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,5973.6 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,2660.4001 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,9915.601 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,7741.2 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1374.0 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,7585.2 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2004.0001 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6952.8003 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8635.2 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,205218.02 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,592327.25 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,459301.22 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1105.2001 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,529.2 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4819.2 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,15.6 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5274.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,666.2 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4384.7 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,40.7 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,521.2 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5868.6 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,305.3 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12984.4 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64203.7 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8082.1 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4052.2 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5438.8 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1775.1 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4292.2 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1982.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,668.1 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4428.3 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,150.1 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,798.6 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,965.4 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,196.2 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,935.3 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,550.7 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,412.6 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,406.7 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,754.7 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19892.6 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3600.3 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1378.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,919.5 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,799.5 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3826.9 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,42.8 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,526.2 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4108.9 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,542.3 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11753.7 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60789.2 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,541.2 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4887.6 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.6 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,12.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,196.8 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,265.2 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4456.8003 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1630.8 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,554577.5 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1033411.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1023970.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1342192.8 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9441.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,199484.4 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,202169.12 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,401653.53 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,456.00003 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1575.6001 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3608.4001 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4609.2 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1988.4 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5828.4004 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8536.801 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,206965.2 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,616107.6 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,474748.8 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1425530 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,549796 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,430976 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4903.2 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,174.0 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,46059.6 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12494.4 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8448.0 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3128.4001 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4332.0 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1548.0001 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,484.80002 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1629.6001 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16633.201 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3380.4001 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1072.8 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://purl.org/nidash/fsl#,Background (mm^3),,,7312088.0 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,546.4554 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1569.7479 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3746.0327 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4084.5872 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1811.9812 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5408.287 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8596.42 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,369.07196 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1210.2126 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3962.5168 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4658.699 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1778.6025 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5064.0107 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8539.2 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,299942.97 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,973764.4 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,848504.06 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1615772.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,280740.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,273837.5 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62901.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,719133.5 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1019126.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4464.6 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,686.2 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13522.4 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,51045.4 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8417.3 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4077.9 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5812.9 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2120.4 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,799.6 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3676.8 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,13137.601 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,10428.0 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,4212.0 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,12126.0 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,22419.602 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,10887.601 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,15808.801 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,10245.601 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,922.80005 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,5817.6 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2695.2002 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,6262.8003 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3957.6 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2277.6 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1745629E7 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,711.60004 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1053.6001 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3954.0002 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3591.6 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1609.2001 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5391.6 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8470.801 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,680.4 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1614.0001 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4347.6 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4196.4004 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1585.2001 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5326.8003 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8318.4 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,210613.2 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,540896.44 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,446155.22 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1447800 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,486.5 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4117.0 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,8.9 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,227.8 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3840.4 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,241.6 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,16579.7 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,66748.6 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7150.0 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3658.3 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5060.3 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1939.9 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4460.2 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2041.9 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,560.1 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4225.9 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,11.8 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,210.4 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1553.9 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,229.8 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,789.4 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,424.9 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,684.6 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,551.5 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,806.2 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1274.4 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,520.80005 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5275.2 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.400002 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4852.8003 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,308.40002 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,59896.8 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15283.2 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9369.601 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3736.8 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6264.0005 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1724.4 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4878.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1582.8 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,610.80005 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1425.6001 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17552.4 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3475.2002 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1088.4 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,828.00006 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,337.2 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,48136.8 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12409.2 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8305.2 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3174.0002 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4348.8003 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1398.0 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3416.4001 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1072.8 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,493.2 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4634.4004 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,10.8 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,3.6000001 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,243.6 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,302.40002 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4027.2002 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1754.4 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2691.6 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3271.2002 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,8420.4 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,4372.8003 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2238.0 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,8770.801 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,10624.801 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,8836.801 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2936.4001 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,11054.4 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8667.601 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,7125.6 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3492.0002 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,11800.801 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1759.2001 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3668.4001 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4561.2 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2610.0 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3541.2002 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1951.2001 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,8893.2 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,534997 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,406078 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5778.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,392.40002 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,58092.004 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13768.801 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8320.801 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3280.8 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4531.2 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1544.4 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,705.60004 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1640.4 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18342.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3517.2002 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1035.6001 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,902.4 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,422.40002 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4918.8003 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.2 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4953.6 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,559.2 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,58695.6 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13616.4 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8224.801 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3426.0002 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4605.6 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1519.2001 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3867.6 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,997.2 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,410.40002 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4879.2 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,10.8 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,1.2 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,232.8 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,303.6 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4725.6 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2214.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1532200 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,533818 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,467949 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5613.6 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,184.8 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,59163.6 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15376.801 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9559.2 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3504.0002 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6282.0005 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1786.8 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,594.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1770.0001 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19129.201 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3687.6 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1273.2001 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1025504.5 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1005073.5 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1467152.5 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,20431.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,196711.02 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,191778.11 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,388489.12 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1572297.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,281821.4 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,273513.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59091.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,741848.4 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1002728.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,9299.6 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,555.1 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14551.3 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63557.0 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,220.7 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,970.5 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,628.3 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,546.1 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,597.8 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,866.5 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1751821E7 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,621.60004 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1203.6001 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3991.2002 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2722.8 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1747.2001 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4886.4004 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7560.0005 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,476.40002 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,694.80005 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1041850.0 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1029094.0 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1029479.06 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,470490.3 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,899722.06 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,890047.06 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1234307.5 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9675.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,951.5 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1113327.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1102910.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1102800.5 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,497955.3 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,989618.56 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,982045.56 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1420863.4 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7573.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,213543.38 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,211165.86 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,424709.22 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1503778.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,248144.75 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,249810.55 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57248.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,652005.3 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,979877.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2949.4 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,173.7 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13216.1 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,47652.8 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6997.7 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3364.4 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,185.1 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,770.6 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,538.7 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,770.3 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,502.7 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1256932.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1235420.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1236170.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,587872.5 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1103887.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1085645.0 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,182723.4 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,180308.33 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,363031.75 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1353241.0 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,235925.2 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,234565.11 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,54111.0 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,639075.3 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,887093.0 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4278.3 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,292.7 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14075.0 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55401.8 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7082.6 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3651.7 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1231746.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1209198.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1209653.8 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,594098.25 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1091359.8 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1072494.8 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1415289.8 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,18865.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,207690.31 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,206047.12 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,413737.44 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1564185.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,299144.84 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,294953.44 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61255.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,771729.25 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1068564.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,9133.7 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,539.6 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12917.5 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56879.8 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7986.4 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4114.8 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5511.9 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1873.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,799.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2139.1 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1296386.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1274924.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1275175.5 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,588245.94 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1142839.5 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1125120.5 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1563436.5 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,17719.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,235329.34 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,234708.19 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,470037.53 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1677225.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,295068.06 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,293177.84 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64136.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,778858.94 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1122067.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,10671.6 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,553.7 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13899.4 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62660.1 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8419.1 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4639.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5714.9 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2068.3 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,194.1 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3883.2002 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1474.8 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,9859.2 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,14136.001 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,11875.2 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2684.4001 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,12523.2 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8770.801 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,7388.4004 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3267.6 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,14972.4 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2080.8 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4116.0 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4566.0 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2463.6 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,4086.0002 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,2053.2002 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9150.0 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4708.8003 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,12842.4 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,9818.4 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,4348.8003 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,9856.801 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,19946.4 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,9560.4 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,15975.601 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,12174.0 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1705.2001 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,7872.0005 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1718.4 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5308.8003 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3920.4001 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1941.6001 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,10398.0 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,14871.601 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,13471.2 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2251.2002 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,11889.601 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,10065.601 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7702.8003 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,4152.0 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,18541.201 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1766.4 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,4165.2 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,5287.2 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2570.4001 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3055.2002 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1948.8 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,8934.0 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3922.8 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,12697.2 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,10633.2 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,3096.0002 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,10398.0 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,21375.602 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,10303.2 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,15506.4 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1741831E7 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,663.60004 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1740.0001 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3864.0002 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3405.6 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2097.6 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6121.2 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9223.2 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,585.60004 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1927.2001 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4159.2 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3428.4001 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2113.2002 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6358.8003 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8961.601 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,214987.2 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,531409.25 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,520834.8 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,151.1 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,814.2 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,461.4 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,521.6 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,395.2 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,678.7 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1053611.0 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2564.4 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,253.9 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11466.8 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52192.2 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1247340.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1225186.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1225470.9 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,554785.9 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1081279.9 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,339.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13889.7 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64301.1 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7756.6 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3863.9 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5946.2 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1942.2 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4100.4 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1683.5 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,524.7 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4087.4 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,17.5 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,478.8 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1166.8 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,126.7 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,850.3 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,427.2 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,696.4 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,571.9 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,621.1 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1191698.0 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1181868.0 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1181821.2 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,602925.7 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1063319.2 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1056782.2 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1451121.8 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6537.0 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,197568.64 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,195981.98 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,393550.62 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1555653.0 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,302726.06 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,300199.62 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57204.0 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,765391.7 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1230402.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1215473.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1215679.9 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,587465.2 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1068557.9 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1129871.1 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1107657.1 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1593010.0 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,22214.0 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,226324.48 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,226063.1 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,452387.56 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1624407.0 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,294206.38 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,293149.16 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65659.0 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,776650.5 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1104551.0 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,13366.9 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,214.1 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14474.3 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61596.5 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8656.7 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4183.2 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6370.9 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2163.6 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,9092.4 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,26530.8 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,9909.601 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,15512.4 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,12310.801 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,720.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,7681.2 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7755.6 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,510.00003 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1308.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3090.0002 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3750.0002 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1560.0001 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5384.4004 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8008.8003 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,152968.81 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,471219.62 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,392270.4 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4416.7 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1692.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,875.2 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4160.6 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,11.3 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,443.4 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1544.5 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,196.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1075.8 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,630.9 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,750.7 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,861.7 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,875.4 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,11074.801 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3571.2002 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,9156.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,22591.201 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,9279.601 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,16731.602 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,10545.601 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1680.0001 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,8590.801 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,8545.2 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3886.8 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,14688.001 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1912.8 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,4694.4004 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,5284.8003 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3486.0002 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4808.4004 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1708.8 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,818.4 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1422.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16557.602 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3558.0002 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1024.8 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1149.6001 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,436.80002 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4602.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,21.6 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,9910.801 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,152.40001 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,55400.402 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13425.601 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8482.801 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3592.8 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4830.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1611.6001 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4078.8 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1231.2001 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,508.80002 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1495180 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,607802 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,424747 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,12489.601 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,187.20001 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,53306.402 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13909.2 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8614.801 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,376.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15231.3 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63833.1 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,505.2 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,390.6 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,739.1 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1419860 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,575552 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,386477 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5116.8003 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,234.00002 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,58014.004 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15296.4 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8823.601 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3549.6 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5290.8003 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1743.6001 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,702.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2354.4001 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20334.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3619.2002 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1123.2001 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1015.2 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,547.2 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5544.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,30.000002 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5526.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,438.00003 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,56838.004 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15038.4 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8659.2 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3699.6 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5186.4004 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1671.6001 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3708.0002 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1143.6001 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,428.40002 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,5257.2 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.400001 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,5078.4004 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1621.2001 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3856.8 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,2590.8 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,9691.2 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3097.2002 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,12378.001 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,9355.2 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4893.6 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1483.2001 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,483.6 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1362.0 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15489.601 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3243.6 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1093.2001 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,889.2 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,552.0 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4414.8003 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,8.400001 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3420.0002 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,12069.702 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1792.9077 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3353.119 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4766.4644 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2317.4287 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3426.5518 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1311.3022 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,8509.636 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3245.3538 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,11686.325 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,9231.567 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3889.084 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1058166.9 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1433100.6 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,188.40001 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,49348.8 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1049704.0 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1030182.0 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1030359.0 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,498039.25 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,919627.0 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,905082.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1744003E7 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,790.80005 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1266.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4237.2 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3600.0002 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2019.6001 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6668.4004 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7818.1 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3934.4 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5346.4 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,203.8 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,853.2 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,419.3 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,544.0 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,491.8 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,807.4 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.174325E7 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,678.0 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1376.4 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3777.6 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4023.6 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1956.0001 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5421.6 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9097.2 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,632.4 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1364.4 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4032.0002 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4219.2 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1810.8 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5768.4004 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9073.2 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,224504.4 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,721844.44 -ABIDE UCLA_1 Site,0051265,1.592E1,2,Male,1.08E2,1.06E2,1.08E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,512127.62 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1924.9 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,692.5 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2041.2 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19673.5 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3518.3 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1782.2 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,742.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,626.1 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3998.4 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,17.7 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,362.8 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,9637.2 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1256.1 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,5198.4004 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10391.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,205091.73 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,200421.92 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,405513.66 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1596813.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,298957.53 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,288507.62 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63130.0 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1303790.2 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14545.0 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,175244.83 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,175102.92 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,350347.75 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1383518.0 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,249786.86 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,248252.39 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,54687.0 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,658005.25 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,902770.0 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6904.6 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,490.9 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11676.6 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52235.7 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7545.5 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3929.1 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5014.4 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1749.1 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,981.1 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,3096.5 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17556.0 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2999.3 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1329.8 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1036.6 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,634.8 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3365.3 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,47.1 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,378.4 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6079.4 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,436.3 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11197.6 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,7401.6 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1067.2 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2089.8 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20336.3 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1362810 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,533823 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,386652 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4741.2 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,264.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,54302.402 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13016.4 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8100.0005 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3511.2002 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4628.4004 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1486.8 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,679.2 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1851.6001 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17751.602 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3134.4001 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,932.4 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,930.00006 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,524.4 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4909.2 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,16.800001 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4378.8003 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,390.00003 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,56065.203 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13074.001 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7978.8003 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3634.8 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4662.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1392.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3529.2002 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1078.8 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,505.2 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4665.6 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.400001 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,6.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,226.8 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,340.80002 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4640.4004 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2232.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3394.8 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3075.6 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,6664.8003 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3640.8 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1754.4 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,9752.4 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,11428.801 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,10412.4 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2581.2002 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,11748.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8823.601 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,5457.6 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3470.4001 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,13580.4 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2301.6 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4039.2002 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,5125.2 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2660.4001 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1321950 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,457883 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,398553 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,161.9 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,947.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,536.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,405.4 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,401.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,768.1 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,1.2 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,278.40002 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,397.2 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4842.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2251.2002 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3589.2002 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,2590.8 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,6070.8003 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,4041.6 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1982.4 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,10908.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,13413.601 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,10345.2 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2010.0001 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,12391.2 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,7646.4004 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6970.8003 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,2695.2002 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,13798.801 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1938.0001 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4393.2 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4224.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2582.4001 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3603.6 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1911.6001 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9603.601 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3678.0002 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,13810.801 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,10106.4 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3770.4001 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,10390.801 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,21319.201 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,8012.4004 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,17101.201 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,11182.801 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1243.2001 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,5688.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1909.2001 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,4945.2 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3566.4001 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2212.8 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3666.0002 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,2042.4 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,8583.601 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3471.6 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,12627.601 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,13047.601 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2588.4001 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,9292.801 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,27063.602 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,11289.601 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,16507.201 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,12396.001 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,862.80005 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6484.8003 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3092.4001 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3562.8 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,8731.2 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3774.0002 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2118.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,11274.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,10887.601 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,12036.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,3280.8 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,13012.801 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8632.801 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,8715.601 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3140.4001 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,16746.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2362.8 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4066.8 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4580.4004 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2694.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,4057.2002 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,2121.6 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9860.4 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4064.4001 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,12789.601 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,12502.801 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3656.4001 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,9902.4 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,21222.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,10275.601 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,20112.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,13070.4 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1356.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6549.6 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2026.8 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,6231.6 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4182.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2188.8 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,9742.801 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,15511.2 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,14443.2 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2941.2002 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,12190.801 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,8732.4 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,8658.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3314.4001 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,16570.8 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,2294.4001 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,4555.2 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,5062.8003 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,11405.945 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,19458.771 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,8749.962 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,13987.541 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,8745.193 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1076.6982 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,5219.4595 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2611.1602 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5880.356 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3863.3347 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2255.4397 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,6815.91 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,11993.408 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,9352.684 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2264.9766 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,9619.713 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,8115.7686 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,6268.5015 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3108.0247 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,14249.802 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1751.8997 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3666.8777 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4493.7134 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2694.13 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3889.084 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1785.2783 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,7510.185 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3796.5774 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,11157.989 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,9053.23 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1857.7576 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,10816.574 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,22346.496 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,9849.549 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,13848.305 -ABIDE UCLA_1 Site,0051263,1.603E1,2,Male,8.7E1,8.9E1,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,10288.238 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,210.7 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,860.7 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,4968.0 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1387.2001 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,8560.801 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3126.0002 -ABIDE UCLA_1 Site,0051223,1.331E1,1,Male,1.19E2,1.21E2,9.6E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,11263.2 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,190.1 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,856.4 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,545.5 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,684.4 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,541.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,751.1 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://purl.org/nidash/fsl#,Background (mm^3),,,1.174504E7 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,504.00003 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1489.2001 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3860.4001 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3022.8 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1993.2001 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5535.6 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9085.2 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,417.6 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1442.4 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4105.2 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3704.4001 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1980.0001 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4819.2 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9481.2 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1743502E7 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,757.2 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1279.2001 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4333.2 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3987.6 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1845.6001 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5739.6 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8499.601 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,614.4 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1556.4 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4406.4004 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4161.6 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1886.4 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5901.6 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1050.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1194.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,555.60004 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5570.4004 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,31.2 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5628.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,420.00003 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,63889.203 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13604.8 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,48485.5 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6997.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3677.5 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5524.3 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1667.8 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4121.4 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1418.9 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1173.4 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16571.9 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3955.1 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1867.3 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,831.9 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1747576E7 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,688.80005 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1396.8 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3410.4001 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3775.2002 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1839.6001 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5320.8003 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8324.4 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,463.6 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,645.5 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,417.4 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,587.7 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4171.2 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1529.2 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,578.3 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,608.6 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3727.4 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,69.7 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,437.4 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11866.801 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8067.6 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3603.6 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4807.2 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1354.8 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3349.2002 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1028.4 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,568.80005 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4200.0 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.6 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,10.8 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,228.00002 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,270.0 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4005.6 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1836.0001 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2203.2002 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3564.0002 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,6663.6 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3927.6 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1790.4 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,9291.601 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,13089.601 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,12098.4 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4629.6 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4485.6 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2174.4001 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5113.2 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9440.4 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,216502.81 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,579639.6 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,502274.4 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19601.8 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3825.5 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,381.7 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,498.1 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,453.8 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,870.5 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1491200 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,602212 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,429708 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5142.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,159.6 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57337.2 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8062.6 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3833.1 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6194.8 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2128.2 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1010.5 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2448.7 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21601.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3765.4 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1399.5 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,733.3 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,558.8 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4638.2 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,92.9 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,642.3 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3615.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,702.3 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13768.4 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56587.5 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7973.1 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4076.7 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6327.4 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1820.4 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3883.8 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1416.6 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,468.5 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4268.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,47.7 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,663.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,728.3 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1351920 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,498006 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,401446 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5316.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,339.6 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,50038.8 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12219.601 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9283.2 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3928.8 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4981.2 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1665.6001 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,627.60004 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1412.4 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16476.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3957.6 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1324.8 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,950.4 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,534.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4710.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,24.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4242.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,417.6 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,48691.203 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12631.2 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1744985E7 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,632.4 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1281.6001 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3794.4001 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4142.4004 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1902.0001 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5398.8003 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,21789.602 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,10718.4 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,18312.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,10599.601 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1401.6001 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,7002.0005 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,3181.2002 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,8410.801 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4401.6 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2294.4001 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,9025.2 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,13126.801 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,13944.001 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2803.2002 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,14378.4 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,10038.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,8104.8003 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,4644.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,17382.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,2301.6 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,4273.2 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,5306.4004 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,3306.0002 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,5127.6 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1760.4 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,7465.2 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,4617.6 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,13551.601 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,11754.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,3219.6 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,11132.4 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,22322.4 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,10844.4 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,18298.8 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,11816.4 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,970.80005 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6722.4004 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1744094E7 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,672.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1288.8 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3847.2002 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4005.6 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1789.2001 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5712.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8612.4 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,552.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1647.6001 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4173.6 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3960.0002 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1767.6001 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5992.8003 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8365.2 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,216048.02 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,573056.44 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,492404.4 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1746566E7 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,565.2 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1261.2001 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3792.0002 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3457.2002 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2102.4001 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6121.2 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8559.601 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,514.80005 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1196.4 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3374.4001 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3338.4001 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1947.6001 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5782.8003 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7900.8003 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1549940 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,620840 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,436263 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4710.0 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,108.00001 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,62602.8 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15618.001 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,10027.2 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3956.4001 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5276.4004 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1665.6001 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,532.80005 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1464.0 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20391.602 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3830.4001 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1125.6001 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2836.8 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3688.8 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,6499.2 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3877.2002 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1729.2001 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,9224.4 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,15055.2 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,9685.2 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,3100.8 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4294.8003 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6124.8003 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1869.6001 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,781.2 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1994.4 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20148.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3771.6 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,465.5 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,460.5 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,434.7 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,863.1 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11920.801 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7444.1 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3922.3 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5383.2 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1771.7 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3581.4 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1647.5 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,598.9 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3965.6 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,24.9 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,616.2 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,793.1 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,160.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,939.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,522.3 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,353.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,367.9 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,712.4 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,235.3 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,711.3 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,398.8 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,551.3 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,393.8 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,824.9 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,2083.2002 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3937.2002 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4826.4004 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2388.0 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3454.8 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1275.6001 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,5690.4004 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3235.2002 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,11695.2 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,7771.2 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1873.2001 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,6745.2 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,18638.4 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,7771.2 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,13294.801 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,7964.4004 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,711.60004 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,4636.8003 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,187.3 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,724.6 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1190806.0 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1168020.0 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1168535.4 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,599330.6 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1058367.4 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1039363.4 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1449500.5 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,19004.0 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,188090.47 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,189971.3 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,378061.75 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1563910.0 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,296278.06 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,303052.56 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59139.0 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,767462.6 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1035951.0 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7547.9 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1747394E7 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,549.60004 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1405.2001 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4387.2 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3926.4001 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1702.8 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,12717.601 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,9084.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,7524.0005 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3052.8 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,14898.001 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2076.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4807.2 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,3919.2002 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2112.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,5296.8003 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1664.4 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9822.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4110.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,15352.801 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,10203.601 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,5132.4004 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,11835.601 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,24416.4 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,10054.801 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,16446.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,11143.2 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1401.6001 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6591.6 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2664.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5786.4004 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,5004.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1977.6001 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,9514.801 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2005.3 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,725.5 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4067.4 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,24.6 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,422.4 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1754726E7 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,415.2 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,921.60004 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2491.2002 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3434.4001 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1396.8 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4842.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4363.9 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,71.2 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,567.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,200.40001 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,44983.203 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10873.2 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8168.4004 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3481.2002 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4353.6 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1279.2001 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3685.2002 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,986.4 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,410.40002 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4568.4004 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,4.8 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,156.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,259.2 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4822.8003 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1806.0001 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,13191.601 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,11650.801 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,3014.4001 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,11894.4 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8150.4004 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,7347.6 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3426.0002 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1281585.0 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1255598.0 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1256322.1 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,587355.5 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1038.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,420.00003 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4852.8003 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,7.2000003 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,8.400001 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,243.6 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,314.40002 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4447.2 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1532.4 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2708.4001 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3030.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,5784.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3601.2002 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2036.4 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4664.4004 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5489.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,391.3 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14798.1 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59578.7 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8103.5 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5264.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5209.9 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1995.8 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4447.6 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1714.7 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,852.2 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4148.6 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,22.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,672.6 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1530.4 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,10828.801 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,9538.801 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1784.4 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,9948.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,24014.4 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,11278.801 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,14764.801 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,7155.6 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,523.2 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,5982.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,6894.0005 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,5671.2 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3003.6 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1745056E7 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,610.80005 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1464.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3517.2002 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4138.8003 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1807.2001 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5640.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8725.2 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,472.80002 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1658.4 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3742.8 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4227.6 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1696.8 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5464.8003 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8258.4 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,222177.61 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,685113.6 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,477567.62 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,7238.4004 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3055.2002 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,12277.2 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1205107.0 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1191893.0 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1192073.5 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,549516.6 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1079947.5 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1070008.5 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1513579.1 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9939.0 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,232852.17 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,227732.7 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,460584.88 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1593537.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4617.6 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.2 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3324.0002 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,8084.4004 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,9037.2 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,8498.4 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2173.2002 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1743493E7 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,739.2 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1353.6001 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4096.8003 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3818.4001 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1804.8 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5810.4004 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8916.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,458.40002 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1584.0001 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4256.4004 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4274.4004 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1862.4 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5817.6 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8194.801 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,276911.28 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,272605.34 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57354.0 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,708177.6 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1067124.0 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4280.2 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,283.9 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12346.2 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,49305.6 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7519.5 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2399.4 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20223.9 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4267.7 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1966.7 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,913.2 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,770.0 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1431700 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,549740 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,407705 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8168.4004 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,260.40002 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2691.6 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,2556.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,5029.2 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,2960.4001 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1626.0001 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1394210 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,541600 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,407472 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6246.0005 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,207.6 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,55128.004 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1040.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,530.5 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,412.7 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,648.6 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,918.8 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4333.2 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1978.8 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5724.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9168.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,477.6 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1573.2001 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4350.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4190.4004 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2046.0001 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6104.4004 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9294.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,235050.02 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1205900 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,448198 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,336266 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4399.2 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,228.00002 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,51175.203 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13327.2 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7215.6 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2658.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4544.4004 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1507.2001 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,570.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1666.8 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17457.602 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3400.8 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,969.60004 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,979.2 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,360.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1749415E7 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,464.40002 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1224.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3194.4001 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3951.6 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1735.2001 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5682.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7598.4004 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,519.60004 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,6844.8003 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,4545.6 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2220.0 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,8631.601 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,10694.4 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,9621.601 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2083.2002 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,11670.0 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,7717.2 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,5270.4004 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3402.0002 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,14137.2 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2019.6001 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4466.4004 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4039.2002 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1868.4 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,2925.6 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1166.4 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,10226.4 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4174.8003 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,12982.801 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,10150.801 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3620.4001 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,10664.4 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,22140.0 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,8186.4004 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,14791.2 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,10038.0 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,662.4 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6001.2 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2592.0 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,7551.6 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2694.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,9979.2 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8100.0005 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6116.4004 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3096.0002 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,14150.4 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2055.6 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4141.2 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4918.8003 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1418.4 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3181.2002 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1735.2001 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9200.4 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3124.8 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,11905.2 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,8815.2 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3956.4001 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,11264.4 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,20464.8 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,9297.601 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,15504.001 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,9162.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,549.60004 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,5613.6 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2184.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5216.4004 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3728.4001 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1942.8 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,8919.601 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,16236.001 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,10593.601 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2691.6 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,11688.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,8371.2 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,6950.4004 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3814.8 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,14980.801 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1744.8 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,4102.8003 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4672.8003 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1639.2001 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3360.0002 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1941.6001 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,7690.8003 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3020.4001 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,55425.6 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13663.2 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9295.2 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3776.4001 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4678.8003 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1773.6001 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,520.80005 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1734.0001 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18675.602 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3673.2002 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1070.4 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,846.00006 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,556.80005 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5361.6 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,15.6 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4532.4004 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,711492.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,534704.44 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1153490 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,446866 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,333363 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3800.4001 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,150.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,46232.402 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11535.601 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8278.801 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3422.4001 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4413.6 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1344.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,506.40002 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1608.0001 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15896.4 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3528.0002 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,975.60004 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,726.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,477.6 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2350.4 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1081.2 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1592.4 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3416.4001 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4586.4004 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1353580 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,487265 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,6718.8003 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3792.0002 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,10132.801 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,8954.4 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,2944.8 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,10197.601 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,19657.201 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,8377.2 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,15396.001 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,9187.2 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,798.00006 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,5434.8003 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1716.0001 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5434.8003 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3580.8 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1707.6001 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,9186.0 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,13096.801 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,10243.2 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2547.6 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,9600.0 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,8386.801 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,6196.8003 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3229.2002 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,12351.601 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1687.2001 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3285.6 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,3565.2002 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1922.4 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,4046.4001 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1771.2001 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,5512.8003 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3861.6 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,10548.0 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,9974.4 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1328.4 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,8773.2 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,20967.602 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,9193.2 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,14768.4 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,9027.601 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,771.60004 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6225.6 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9044.4 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3980.4001 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4791.6 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1572.0001 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3921.6 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1302.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,577.2 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4404.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.800001 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,4.8 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,206.40001 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,318.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4180.8003 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1675.2001 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2983.2002 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,2487.6 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,5985.6 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3693.6 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1878.0001 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,8544.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,10855.2 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,10674.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2316.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,10066.801 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,7906.8003 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6852.0005 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,2912.4001 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,15366.001 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15318.001 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8792.4 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3367.2002 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4875.6 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3393.6 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2572.8 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,7530.0005 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,13400.4 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,11173.2 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2163.6 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,11187.601 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,7490.4004 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,6264.0005 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3284.4001 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,15404.4 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1940.4 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,4034.4001 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4485.6 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1882.8 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,2894.4001 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1678.8 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,9500.4 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3714.0002 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,12081.601 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,11240.4 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2587.2002 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1819.3 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22136.1 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3891.6 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1829.3 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1046.7 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,708.9 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4254.4 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,11.4 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,522.1 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1182941.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1159267.0 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1159362.5 -ABIDE UCLA_1 Site,0051217,1.522E1,1,Male,1.04E2,8.9E1,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,555334.4 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,918.4 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1962.1 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19916.3 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3843.8 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1977.9 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1112.3 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,857.9 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4063.4 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,21.1 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,502.9 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6304.8 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,7161.6 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1267.2001 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,4093.2002 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1142.4 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9514.801 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3375.6 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,12490.801 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,8140.8003 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,1972.8 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,9927.601 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,21319.201 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,9258.0 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,13129.2 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,9724.801 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,842.4 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,5036.4004 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2150.4001 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5270.4004 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3256.8 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1738.8 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,6798.0005 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,12915.601 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,10323.601 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2062.8 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,10408.801 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,6997.2 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,6547.2 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3069.6 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,13165.2 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1551.6001 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3748.8 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4918.8003 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1447.2001 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3111.6 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1514.4 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,7336.8003 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3219.6 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,12286.801 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,8790.0 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1570.8 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,9060.0 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,21930.0 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,10552.801 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,13168.801 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,9421.2 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,669.60004 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,5904.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1741025E7 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,644.4 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1405.2001 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4166.4004 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1453940 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,499274 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,437123 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,15334.801 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,240.00002 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,62610.004 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,14571.601 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1718.4 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3134.4001 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4347.6 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1532.4 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,2726.4001 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,2154.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,7112.4004 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,4058.4001 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,10666.801 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,10455.601 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2047.2001 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,7075.2 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,20010.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,7119.6 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,14594.4 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,9960.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,810.00006 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6549.6 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1742147E7 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,754.80005 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1286.4 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3847.2002 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1675.2001 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,624.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1402.8 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20157.602 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3684.0002 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1090.8 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,873.60004 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,374.40002 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5072.4004 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,16.800001 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5472.0 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3932.4001 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5178.0 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1662.0001 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,525.60004 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1549.2001 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16292.4 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3181.2002 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,998.4 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1258.8 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,492.00003 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4485.6 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.400002 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4874.4004 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,163.20001 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,51030.004 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,294968.1 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,291852.28 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60707.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,757889.4 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1100113.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4941.9 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,354.7 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13438.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54581.3 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8304.8 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,181.20001 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,55732.8 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1738301E7 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,706.80005 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1401.6001 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4608.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4231.2 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1918.8 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6418.8003 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9184.801 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,595.2 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1576.8 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4796.4004 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4378.8003 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2166.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6949.2 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9247.2 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,197636.4 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,679130.44 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,525674.44 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1306530 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,532574 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,366052 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7057.2 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,182.40001 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,49885.203 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12112.801 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7938.0005 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15080.4 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8643.601 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3422.4001 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4840.8003 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1564.8 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3729.6 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,444.7 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,363.8 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,686.6 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,691336.8 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,451448.4 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1746332E7 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,729.60004 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1098.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4106.4004 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3813.6 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1591.2001 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5737.2 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8478.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,564.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1184.4 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4094.4001 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3566.4001 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1453.2001 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5857.2 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7874.4004 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,227158.81 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1504.8 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4113.6 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4323.6 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2035.2001 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6231.6 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9406.801 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,506.40002 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1719.6001 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4405.2 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4101.6 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2029.2001 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6368.4004 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8680.801 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,250714.81 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,651222.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,508255.22 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1051.2001 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,381.6 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4934.4004 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,8.400001 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,15.6 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,235.20001 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,278.40002 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,5426.4004 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2692.8 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2692.8 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,2634.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,7668.0005 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3148.8 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1918.8 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,9906.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,14205.601 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1796.4 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4464.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4197.6 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1375.2001 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,4291.2 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1492.8 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,7308.0005 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3792.0002 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,11864.4 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,10971.601 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,2781.6 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,8886.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,17528.4 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,8038.8003 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,15127.2 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,9180.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1344.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6117.6 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1597.2001 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,6088.8003 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3201.6 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1532.4 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,8706.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,12998.4 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,10389.601 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2265.6 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,11307.601 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,8622.0 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7012.8003 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3519.6 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,13791.601 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1566.0001 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3903.6 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4429.2 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1741.2001 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,4316.4004 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1972.8 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,6028.8003 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1453940 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,574780 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,391398 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6753.6 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,356.40002 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,49359.6 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12781.2 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8679.601 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3934.8 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4825.2 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1597.2001 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,735.60004 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1395.6001 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16021.2 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3805.2002 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1041.6001 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1052.4 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,579.60004 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4758.0 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,16.800001 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4375.2 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,331.2 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,48541.203 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12385.2 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8613.601 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3932.4001 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4959.6 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1478.4 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3928.8 -ABIDE UCLA_1 Site,0051219,1.393E1,1,Female,7.9E1,8.1E1,8.5E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1072.8 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,276144.94 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,274223.44 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58856.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,715458.4 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1007783.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2762.1 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,341.3 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12849.5 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53160.4 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7853.3 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,10460.4 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8185.2 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6576.0005 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3184.8 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,13479.601 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2001.6001 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4178.4004 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,2937.6 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2344.8 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3868.8 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1635.6001 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9734.4 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3566.4001 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,12766.801 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,11385.601 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,4029.6 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,9312.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,19453.201 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,11690.4 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,15934.801 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,10132.801 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1117.2001 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6106.8003 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2845.2002 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5690.4004 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4932.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2071.2002 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,8547.601 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,12626.4 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,11314.801 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2532.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,12462.001 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,8601.601 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7842.0005 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3627.6 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,14928.001 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1851.6001 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,4154.4004 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4305.6 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2196.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,4041.6 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1509.6001 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,8832.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3438.0002 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,11172.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,11736.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,3398.4001 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,8604.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,21739.201 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,11250.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,15936.001 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,10922.4 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,991.2 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6298.8003 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5409.2 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2025.5 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,998.5 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3814.8 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1132.8 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,414.00003 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4440.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,20.400002 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,10.8 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,237.6 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,320.40002 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,6208.8003 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2107.2002 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3277.2002 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,4057.2002 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,6835.2 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3861.6 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2035.2001 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,10420.801 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,13171.2 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,10184.4 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,3193.2002 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,11334.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8794.801 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,7790.4004 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3849.6 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,15468.001 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2214.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4305.6 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,5379.6 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2776.8 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3733.2002 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1940.4 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9822.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4596.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,13896.001 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,12775.2 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3976.8 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,13820.4 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,25480.8 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5254.8003 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9661.2 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,584.4 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1706.4 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1740426E7 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,627.60004 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,398669 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7498.8003 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,319.2 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,55111.203 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13228.801 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8398.801 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1269650.0 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1236128.0 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1236014.2 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,600843.2 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1128003.2 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1100170.2 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1664056.6 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,27833.0 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,219279.4 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,215850.69 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,435130.1 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1748E7 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,349.2 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1148172.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1139088.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1139468.1 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,550368.4 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1017079.1 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1010703.1 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1325744.6 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6376.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,199857.38 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,199246.36 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,399103.72 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1451671.0 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1878.8 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4124.2 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1309.9 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,666.8 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4432.6 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,39.4 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,556.4 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1341.6 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,187.9 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,948.4 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,467.1 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,725.9 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,480.3 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,744.1 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4862.4004 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,9.6 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5372.4004 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,210.00002 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,51752.402 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13221.601 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7177.2 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2895.6 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4490.4004 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1390.8 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3302.4001 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,948.00006 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,361.2 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4772.4004 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,9.6 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,6.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,192.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,280.80002 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4498.8003 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2026.8 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2978.4001 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,2870.4001 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,4050.0002 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,2904.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1768.8 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,7052.4004 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,9136.801 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,8338.801 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,1884.0001 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,7087.2 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,6688.8003 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,5059.2 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,2997.6 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,10393.2 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1848.0001 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3525.6 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,3938.4001 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1748.4 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3735.6 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1462.8 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,7513.2 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3271.2002 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,10327.2 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,6950.4004 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3080.4001 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,8629.2 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,18578.4 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,8714.4 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,15436.801 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,9672.0 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1807070.0 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,300845.62 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,299997.53 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61419.0 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,772653.2 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1097416.0 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,17530.2 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,618.8 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15340.1 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53654.4 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9175.4 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3916.7 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,9274.801 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,6804.0005 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,5200.8003 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3186.0002 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,11835.601 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2169.6 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3897.6 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,3571.2002 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1477.2001 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,2679.6 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,280268.88 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,269465.16 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66309.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,749997.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1065476.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,14228.3 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,485.9 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16482.4 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,66233.5 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8252.9 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4495.1 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5834.2 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2251.8 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1123.1 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1795.5 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22543.4 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4362.2 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1971.6 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1430.5 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,737.7 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4380.5 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,42.5 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,531.7 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7567.5 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,318.4 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15145.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,66469.1 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8026.4 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4697.5 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5637.7 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2104.8 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4553.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2110.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,734.1 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4337.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,29.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7972.8003 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3808.8 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5299.2 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1468.8 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3488.4001 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1844.4 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4778.4004 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3682.8 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2102.4001 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5956.8003 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8584.801 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,543.60004 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1465.2001 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4605.6 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4004.4001 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2046.0001 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6092.4004 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8536.801 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,215202.02 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,577774.8 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,491180.4 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,13424.4 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2086.8 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4280.4004 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4347.6 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1710.0001 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,5154.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1668.0001 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,7369.2 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3447.6 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,10740.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,8253.601 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,2941.2002 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,8290.801 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,18313.201 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,7635.6 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,14143.2 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,7833.6 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1141.2001 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,5755.2 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1561.2001 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5974.8003 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3645.6 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2017.2001 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,8556.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,13400.4 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,10384.801 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,1873.2001 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,9482.4 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,7316.4004 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,5677.2 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3804.0002 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,9374.4 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,11980.801 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1706.4 -ABIDE UCLA_1 Site,0051211,1.127E1,1,Male,9.4E1,9.4E1,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,7167.6 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,183.4 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,840.9 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,552.3 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,505.0 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,418.4 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,942.4 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4821.5 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,33.1 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,450.8 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6862.1 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,261.8 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15998.3 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64665.4 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8639.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1070268.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1060771.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1061085.5 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,497966.03 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,944316.5 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,937996.5 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1254534.6 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6320.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,187645.64 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,190116.81 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,377762.47 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1454962.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,249153.92 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,248812.11 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59992.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,660624.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,935310.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2819.3 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,820.80005 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2006.4 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17864.4 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3637.2002 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,20199.602 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,8310.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,14122.801 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,6645.6 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,799.2 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6338.4004 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3236.4001 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,14156.4 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1969.2001 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3912.0002 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,3669.6 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1809.6001 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,4609.2 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1888.8 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,6307.2 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,2974.8 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,10880.4 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,8478.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1219.2001 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,8245.2 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4497.2 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5073.5 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1963.6 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4405.9 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1748.8 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,756.3 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4535.1 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.3 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,578.8 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1135.1 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1750.5 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4101.8 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1800.7 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,573.9 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3707.2 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,49.8 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,741.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1769.9 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9126.1 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4089.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1741571E7 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,666.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2727.7 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,213.3 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10510.7 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,50275.5 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7344.1 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3682.8 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5099.7 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1460.5 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3872.4 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1480.4 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,538.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3719.5 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,29.5 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,379.4 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1037.4 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1224320 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,487387 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,344646 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7320.0005 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,229.20001 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,42342.0 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11712.0 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8133.6 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3633.6 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4318.8003 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1558.8 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,579.60004 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2733.6 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15327.601 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2782.8 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,993.60004 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1119.6001 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,441.6 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4384.8003 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,18.0 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6534.0005 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,247.20001 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,46995.6 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11806.801 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8056.8003 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3810.0002 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4364.4004 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1495.2001 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3020.4001 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,952.80005 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,440.40002 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4258.8003 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,9.6 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,177.6 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,284.40002 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4512.0 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1930.8 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2613.6 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,2613.6 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,5799.6 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,2653.2002 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1592.4 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,8079.6 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,12486.001 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,9020.4 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2312.4001 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,9554.4 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,6646.8003 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,5472.0 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,2576.4001 -ABIDE UCLA_1 Site,0051257,1.338E1,2,Male,1.06E2,1.05E2,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,13560.001 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1361.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18501.2 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3915.7 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1552.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,982.9 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,602.7 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3655.5 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,36.3 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,692.5 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,9264.3 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,214.6 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14208.7 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63914.8 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7383.8 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3851.6 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5617.9 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,278831.6 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,272908.06 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,551739.6 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1897389.0 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,320474.44 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,321293.72 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,71016.0 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,838893.1 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1263522.0 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5826.1 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,397.5 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14814.7 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58283.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3940.1 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,480.4 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13940.2 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64682.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8637.5 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4084.8 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6918.3 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2108.4 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4271.1 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1624.2 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,793.7 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4442.8 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,63.6 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,549.6 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21964.6 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4412.7 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1714.8 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1229.4 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,875.4 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4197.9 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,55.2 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,403.3 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13444.7 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55263.6 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9095.9 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3847.8 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4844.2 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1708.0 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3436.9 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1734.6 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,632.4 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4117.9 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,1.0 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,537.4 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2416.7 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,176.1 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,717.5 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,315.4 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,378.8 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,449.1 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,830.3 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,12270.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,16242.001 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,13282.801 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1410.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6500.4004 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,3234.0002 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,7141.2 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3595.2002 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1914.0001 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,9498.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,16519.201 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,11864.4 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,3036.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,13730.4 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,654.8 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3986.1 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,32.7 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,420.6 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,8329.2 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,8073.6 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,4088.4001 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,16233.601 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,2182.8 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,4033.2002 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,6139.2 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2461.2002 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,2558.4001 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1506.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,11193.601 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,4593.6 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,12813.601 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,11373.601 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2446.8 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,12591.601 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,28826.4 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,11323.2 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,16132.801 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1250.4 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,5286.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1786.8 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,4249.2 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,2858.4001 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1900.8 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,7651.2 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,10749.601 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,9690.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,1719.6001 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,8857.2 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1131.6001 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,6412.8003 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3458.4001 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,10587.601 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,7660.8003 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,2617.2002 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,8156.4004 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,16453.201 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,8376.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,14782.801 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,7599.6 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,652.80005 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,5029.2 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1873.2001 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,4808.4004 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3400.8 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1616.4 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,6210.0005 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,8968.801 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,9842.4 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,1802.4 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,10957.2 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,6177.6 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,6981.6 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1464570 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,591845 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,410283 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4287.6 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,187.20001 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,57564.004 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14055.601 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8944.801 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3534.0002 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5257.2 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,201.9 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,906.5 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,549.5 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,480.1 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,526.1 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1019.6 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,12339.601 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,1003.2 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6831.6 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,2954.4001 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,12894.001 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1575.6001 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3586.8 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4064.4001 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1620.0001 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,2832.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1718.4 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,5896.8003 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3152.4001 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,9552.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,8612.4 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1470.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,6286.8003 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,19092.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,8888.4 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,13129.2 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,8320.801 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,892.80005 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,5463.6 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,9831.601 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,4224.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,12042.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,13773.601 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2790.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,9830.4 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,26563.201 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,11158.801 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,17829.602 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,11353.2 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,1094.4 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1022.4 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,415.2 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4544.4004 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,20.400002 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,262.80002 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,303.6 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,3820.8 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2025.6001 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2439.6 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,2647.2002 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,5505.6 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3222.0002 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1870.8 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,8383.2 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,12376.801 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,10020.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,1846.8 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,9639.601 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1740298E7 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,661.2 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1467.6001 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4324.8003 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4507.2 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2172.0 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,5168.4004 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,20.400002 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,4.8 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,297.6 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,343.2 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,6310.8003 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2186.4001 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3296.4001 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3843.6 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,7969.2 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,4866.0 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1645.2001 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,10358.4 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,13452.001 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,11246.4 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2871.6 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,12198.0 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,9716.4 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,9105.601 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3586.8 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,497.5 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4032.6 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,13.4 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,537.7 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1040.7 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,202.1 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,718.2 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,443.1 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,655.6 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,543.6 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,740.3 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61751.0 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8394.0 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4074.9 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,15192.001 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2326.8 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4590.0 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,5169.6 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2241.6 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,5589.6 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1789.2001 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,10761.601 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4220.4004 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,13788.001 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,13672.801 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,4779.6 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,13701.601 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,24559.201 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,11836.801 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,17208.0 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,13032.001 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1401.6001 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6708.0005 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2054.4001 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,6828.0005 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,5192.4004 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1566.0001 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,10101.601 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,14924.4 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,11602.801 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,3098.4001 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,14265.601 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,9273.601 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,8542.801 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,4149.6 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,16059.601 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1926.0001 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,4278.0 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4785.6 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2815.2002 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3825.6 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,2371.2002 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,9822.0 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,4015.2002 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,14242.801 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,13444.801 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2023.2001 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,10126.801 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,31891.201 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,11934.0 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,15918.001 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,12475.2 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,656.4 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6639.6 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4098.0 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,218.40001 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,53244.004 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14690.4 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8761.2 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3442.8 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5078.4004 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1762.8 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,568.80005 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1532.4 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20371.201 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3580.8 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,913.2 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,790.80005 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,481.2 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5498.4004 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.400002 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3520.8 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,204.00002 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,55766.402 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14694.001 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8632.801 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3633.6 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5206.8003 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1624.8 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3660.0002 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,847.2 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,492.00003 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,5104.8003 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.2 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,4.8 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,232.8 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,306.0 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4972.8003 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1725.6001 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3207.6 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,2683.2002 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,4735.2 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3710.4001 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1929.6001 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,8643.601 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,10060.801 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,9577.2 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2168.4001 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,9524.4 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,7231.2 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6951.6 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,2893.2002 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,12066.0 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1693.2001 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,14670.001 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,10927.2 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,1153.2001 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,5966.4004 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,659.2 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4102.5 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,27.6 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,762.1 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1148.9 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,800.4 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,609.60004 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5230.8003 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,28.800001 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3391.2002 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,216.00002 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,62455.203 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15667.2 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9878.4 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4078.8 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5137.2 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1555.2001 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3963.6 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1093.2001 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,655.2 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,169.0 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1023.8 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,633.0 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,464.8 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,519.8 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,890.5 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2989.2002 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,10778.4 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,9517.2 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,7576.8003 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3156.0002 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,15906.001 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2128.8 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4358.4004 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4449.6 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2415.6 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3746.4001 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1740.0001 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9951.601 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3975.6 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,13152.001 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,11442.0 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3478.8 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,11581.2 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,20899.201 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,10485.601 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,19171.201 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,13226.4 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1705.2001 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6140.4004 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2932.8 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,6115.2 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3668.4001 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1996.8 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,8767.2 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,6934.8003 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,4982.4004 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3279.6 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,10346.4 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1651.2001 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3277.2002 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,3818.4001 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1939.2001 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1292.4 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3318.0002 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3584.4001 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1065.6001 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,874.80005 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,486.00003 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5085.6 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.2 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7428.0005 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,284.40002 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,55887.6 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13405.2 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8226.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1743205E7 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,597.60004 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,984.00006 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4344.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4088.4001 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1063731.9 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1585700.8 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,17548.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,223774.47 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,220291.53 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,444066.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1636431.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,276249.9 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,278535.94 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62323.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,753479.9 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1060806.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7716.3 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,254.5 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6983.5 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3820.8 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5739.5 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1857.5 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,686.1 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1604.0 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17771.3 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3745.9 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1616.2 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1047.5 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,830.9 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3750.3 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,24.5 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,263.4 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7061.1 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,828.2 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13313.1 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55846.1 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6975.4 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4141.2 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5807.3 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1638.1 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3548.5 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1751.1 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18354.0 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3558.0002 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,981.60004 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,931.2 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,709.2 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5467.2 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,16.800001 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7384.8003 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,202.8 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,61278.004 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14757.601 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9070.801 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5179.2 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4858.8003 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1782.0001 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4196.4004 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1111.2001 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,601.2 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,5210.4004 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,7.2000003 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,13.200001 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,280.80002 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,319.2 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4072.8 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2114.4001 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3289.2002 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,4660.8003 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,7293.6 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3709.2002 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2199.6 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,10428.0 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1411390 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,540705 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,420597 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6050.4004 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,187.20001 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,51342.004 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13078.801 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8323.2 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3624.0002 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5151.6 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1791.6001 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,626.4 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1770.0001 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16060.801 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9363.601 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4149.6 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5139.6 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1874.4 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,780.00006 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1882.8 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19858.8 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3979.2002 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1036.8 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1510.8 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,542.4 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5734.8003 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,24.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8509.2 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,288.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1822.8 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,591.60004 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1998.0001 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17822.4 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3944.4001 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1196.4 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,836.4 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,499.2 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4977.6 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,18.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3324.0002 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,277.2 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,58848.004 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13779.601 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8756.4 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3654.0002 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5100.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1700.4 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4057.2002 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1130.4 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,470.40002 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4753.2 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,6.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,12.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,256.80002 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,332.40002 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,5838.0 -ABIDE UCLA_1 Site,0051231,1.028E1,1,Male,1.03E2,9.8E1,1.04E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2150.4001 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3340.8 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,3189.6 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2149.2002 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3794.4001 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1678.8 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,6964.8003 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3267.6 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,11653.2 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,7927.2 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,2943.6 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,7510.8003 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,15199.2 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,7099.2 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,12872.4 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,8533.2 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1008.00006 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,4904.4004 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1756.8 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5277.6 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3226.8 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1992.0001 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,9162.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2169.6 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6264.0005 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8170.8003 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,513.60004 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1891.2001 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3410.4001 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4467.6 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2121.6 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5695.2 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8557.2 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,271354.8 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,661496.44 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,536170.8 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1743.6001 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5568.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7189.2 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,187962.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,535242.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,421120.8 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1746655E7 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,673.2 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1365.6001 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3985.2002 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3966.0002 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1642.8 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4834.8003 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8355.601 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,897.4 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1514830 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,599574 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,437697 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,564.0 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1296.0 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4317.6 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3960.0002 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1849.2001 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4916.4004 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8098.8003 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,194384.4 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,605181.6 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,436528.8 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1632210.2 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9738.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,230608.55 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,230186.22 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,460794.78 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1724123.0 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5165.3 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2125.8 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,2116.9 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2164.3 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17798.3 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3679.8 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1057.8 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1344.0 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,777.4 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4309.9 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,72.8 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,542.4 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8623.8 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,448.6 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,276952.12 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68576.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,750594.25 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1086331.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4714.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,316.2 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14022.6 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61062.4 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9540.1 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3722.7 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,7040.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2443.9 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,841.7 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1786.5 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14767.2 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9315.601 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3741.6 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5502.0 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1738.8 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,742.80005 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1819.2001 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19290.0 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3696.0002 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1076.4 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1076.4 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,525.60004 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5566.8003 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,9.6 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7754.4004 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,290.40002 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,57994.8 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14160.001 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9109.2 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3732.0002 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1302039.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1284730.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1284996.9 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,603410.2 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1137283.9 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1124187.9 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1544676.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13096.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,225046.33 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,225952.33 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,450998.66 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1652576.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,301740.4 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,301669.78 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67329.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,805477.2 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1121390.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6538.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,382.1 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14567.2 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,67029.7 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8673.6 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4605.7 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6709.6 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2298.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1098.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2247.8 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,23412.2 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4250.6 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1333.7 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1055.5 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,728.3 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4372.8 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,79.8 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,551.8 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5101.1 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,514.8 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14789.2 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,67455.6 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8206.5 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,16474.8 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2088.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4038.0002 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,3985.2002 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2270.4001 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3718.8 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,2592.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,10736.4 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4634.4004 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,13888.801 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,10442.4 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,2823.6 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,9777.601 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,24717.602 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,10023.601 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,16922.4 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,10606.801 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1520.4 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6331.2 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1744.8 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,6235.2 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4262.4004 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2522.4001 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,10218.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,15093.601 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,14060.4 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2667.6 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,13580.4 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,8545.2 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7508.4004 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3446.4001 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,15510.001 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1746.0001 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,4622.4004 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4332.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2036.4 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,4374.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,2787.6 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,8066.4004 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,4065.6 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,13136.4 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,11262.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2526.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,10140.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,24877.201 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,10042.801 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,17386.8 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,10718.4 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,746.4 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6836.4004 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,279702.12 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.4 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,557.6 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3885.2 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,313.8 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13168.8 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61547.1 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7863.1 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4324.2 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1503360 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,588298 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,429862 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,14323.2 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,170.40001 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,57147.6 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7183.1 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3757.7 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5150.4 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2062.7 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,737.0 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1630.7 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17588.2 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3747.4 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1668.4 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,944.7 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,10206.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,1971.6001 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,11206.801 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8973.601 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6387.6 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3696.0002 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,13003.2 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2305.2002 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4111.2 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,3782.4001 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2832.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,4549.2 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1671.6001 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,8407.2 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3422.4001 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,12151.2 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,9522.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,2866.8 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,11421.601 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,21850.8 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,8380.801 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,16058.4 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,10365.601 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1311.6001 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6226.8003 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1556.4 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5326.8003 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4126.8003 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1450.8 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,8098.8003 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,14673.601 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,10125.601 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2251.2002 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,12188.4 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,7822.8003 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,6536.4004 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,4245.6 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,13011.601 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,2125.2002 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,4360.8003 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4548.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2080.8 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3898.8 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1678.8 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,7603.2 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,2997.6 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,11575.2 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,9225.601 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1665.6001 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,8631.601 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,25234.8 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,9718.801 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,15638.4 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3580.8 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3619.2002 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1699.2001 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5900.4004 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7735.2 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,215934.02 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,619124.44 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,460220.4 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1060.1 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,516.3 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,401.4 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,452.5 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,866.9 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3229.1 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5633.7 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1859.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,777.7 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1553.3 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19779.7 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3892.8 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1781.6 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,602.6 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,825.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3996.7 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.7 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,345.8 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2516.5 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,429.9 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2518.8 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,12495.601 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8212.801 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,8140.8003 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3154.8 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,15879.601 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1856.4 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4302.0 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,5457.6 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2642.4001 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3142.8 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1978.8 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9888.0 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4377.6 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,13368.001 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,10009.2 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,4777.2 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,12199.2 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,22150.8 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,10952.4 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1329840 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,504676 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,385191 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5812.8003 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5584.8003 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1624.8 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4117.2 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1143.6001 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,523.2 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,5311.2 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.800001 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,2.4 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,202.8 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,326.40002 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,5677.2 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1976.4 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2883.6 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3907.2002 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,6327.6 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3978.0002 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1952.4 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,9060.0 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,13717.2 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,12152.4 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,223.9 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,729.1 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,405.1 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,625.5 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,600.5 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,943.4 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,872.4 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3569.5 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,5.4 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,346.5 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3276.9 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,184.5 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12124.0 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,51989.5 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7220.6 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3839.9 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5554.8 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1520.0 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3715.6 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1644.4 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,704.5 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3420.5 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,36.7 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,408.5 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1029.4 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,158.9 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,886.0 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,478.4 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,561.4 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,477.1 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,850.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,461.6 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11512.2 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,50502.4 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7607.4 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3810.6 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6225.7 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1877.8 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,810.2 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1973.4 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18739.8 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3370.3 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1474.3 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,620.1 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,637.7 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1481710 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,563815 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,418424 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8438.4 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,165.6 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,64264.8 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1252373.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1239000.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1238614.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,556654.25 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1097923.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1088185.0 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,3222.0002 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14685.601 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8674.801 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4410.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6032.4004 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,421.5 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12048.7 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55672.0 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5127.6 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1605.6001 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3478.8 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1021.2 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,536.4 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4371.6 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,8.400001 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,32.4 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,219.6 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,286.80002 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11949.5 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54010.7 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7537.1 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4630.1 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5314.6 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1860.4 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1504.6 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1465.0 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16606.5 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3884.2 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1467.3 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,910.3 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,752.3 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3756.9 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,37.7 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,359.7 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,9961.8 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,380.1 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11712.7 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53809.3 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7431.4 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4915.7 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5258.1 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1660.9 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3458.9 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1698.9 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,5128.8003 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2332.8 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2098.8 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,4111.2 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,7028.4004 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3362.4001 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1532.4 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,8506.801 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,13308.001 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,10266.0 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2948.4001 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,10064.4 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,9126.0 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,5954.4004 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3760.8 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,14013.601 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1707.6001 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,2890.8 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,3331.2002 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1746.0001 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2186.4001 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,10162.801 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1852.8 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,8756.4 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,23292.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,9738.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,61142.402 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15728.4 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9272.4 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4344.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5004.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1765.2001 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4052.4001 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1177.2001 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,576.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,5563.2 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.400001 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,223.20001 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,291.6 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,6516.0005 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1874.4 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3865.2002 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,2862.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,5377.2 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3591.6 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1777.2001 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,10088.4 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,11324.4 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,9717.601 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2328.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,12404.4 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,924.00006 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3567.6 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3806.4001 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1740.0001 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5337.6 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8252.4 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,426.00003 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1542.0001 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,580538.44 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,476742.03 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1203913.0 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1188040.0 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1188202.4 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,560788.8 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1065219.4 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1051319.4 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1414239.9 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13900.0 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,213798.56 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,210312.06 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,424110.62 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1560186.0 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,285237.06 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,275551.72 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,16767.602 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,13576.801 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1215.6001 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6606.0005 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,3088.8 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5968.8003 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4273.2 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2468.4001 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,12253.2 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,216.00002 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,55257.6 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14359.2 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9399.601 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,5030.4004 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4934.4004 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1872.0001 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,716.4 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1323350.0 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1302826.0 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1303266.1 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,598433.3 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1182797.1 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1167070.1 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1564065.4 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15727.0 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,251458.72 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,250024.11 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,501482.8 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1714269.0 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,298773.44 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,299659.88 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64450.0 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,774972.3 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1163799.0 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7382.7 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,789.2 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14198.4 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55751.5 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8282.2 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3858.1 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6076.9 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1310884.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1285153.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1285244.1 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,620278.44 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1156610.1 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1134180.1 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1497037.2 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,22430.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,224900.92 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,225538.7 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,450439.62 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1646603.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,307633.62 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,312644.84 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58850.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,806933.44 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1129354.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,11555.7 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,367.6 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14177.4 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61859.4 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7620.8 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3774.1 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5373.4 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1943.1 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1094.7 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1749041E7 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,315.6 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1198.8 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3490.8 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3258.0002 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1676.4 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5319.6 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8048.4004 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,567.60004 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1251.6001 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3165.6 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3456.0002 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1765.2001 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5901.6 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8024.4004 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,171789.61 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,647911.25 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,436610.4 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1069.2001 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4104.0 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3938.4001 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1948.8 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6650.4004 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8671.2 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,538.80005 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1466.4 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3832.8 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4269.6 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2036.4 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6660.0005 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8840.4 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,211876.81 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,728263.25 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,513217.22 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1339900 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,513035 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,394376 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3879.6 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,117.600006 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,48883.203 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12765.601 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8347.2 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3049.2002 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4689.6 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1614.0001 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,735.60004 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1218.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17146.8 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3546.0002 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1028.4 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,982.80005 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,388.80002 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4956.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,14.400001 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4478.4004 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,166.8 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,47565.6 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12369.601 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8241.601 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3295.2002 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4998.0 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1731.6001 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,741.60004 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2084.4001 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18109.201 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4306.8003 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1119.6001 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,760.80005 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,519.60004 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5251.2 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,16.800001 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5866.8003 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,394.80002 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,56476.8 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13879.2 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8476.801 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4371.6 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4720.8003 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,15081.601 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,11185.2 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2665.2002 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,11270.4 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,7903.2 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7077.6 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3506.4001 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,16408.8 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1732.8 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3771.6 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,5048.4004 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2096.4001 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,2923.2002 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,2110.8 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,8917.2 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3674.4001 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,11396.4 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,11162.4 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1763346E7 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,260.40002 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,895.2 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3183.6 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2248.8 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1201.2001 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,2664.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,5620.8003 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,218.40001 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55465.8 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6080.6 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3169.8 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,54636.004 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14144.4 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8636.4 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4262.4004 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,946.4 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1119916.0 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1108898.0 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1109520.1 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,559079.44 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,985558.1 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,978035.1 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1300125.8 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7523.0 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,180571.19 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,177800.48 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,358371.66 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1441468.0 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,279472.34 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,279607.1 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57854.0 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,728734.44 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,974603.0 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3356.3 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,296.6 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11561.9 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55589.5 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6993.5 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3658.3 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5911.5 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2020.9 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4761.6 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1471.2001 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3710.4001 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1015.2 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,406.80002 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4815.6 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,13.200001 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,12.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,283.2 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,321.6 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,5732.4004 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2053.2002 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2766.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,2725.2002 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,6045.6 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,4420.8003 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2012.4 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,8649.601 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,10606.801 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,8599.2 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1312980 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,516498 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,379689 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4470.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,122.4 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,43684.8 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11816.4 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8044.8003 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2808.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4273.2 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1398.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5073.5 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1574.7 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3877.8 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1474.8 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,525.1 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4002.1 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,24.9 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,538.2 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,400.2 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2893.2002 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,10951.2 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,6781.2 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6218.4004 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,2869.2002 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,11377.2 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1808.4 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4345.2 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,3721.2002 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1836.0001 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,4131.6 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,5278.8003 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1945.2001 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,10771.2 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,4472.4004 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,13800.001 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,14188.801 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,3016.8 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,13142.4 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,30266.4 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,11037.601 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,17583.602 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,11748.0 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,1154.4 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,7914.0005 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1121102.0 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1107898.0 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1107805.6 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,523764.12 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,977245.6 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,967308.6 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1413198.8 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9937.0 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,190188.33 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,185134.14 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,375322.47 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1513134.0 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,263210.28 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,260553.83 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64665.0 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,539.5 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4549.9 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,466.7 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14418.1 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57275.1 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8399.5 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4740.1 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5699.2 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1741873E7 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,580.80005 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1124197.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1110764.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1110463.8 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,520961.34 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,981312.75 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,971892.75 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1347366.4 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9420.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,191615.8 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,193635.6 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,385251.4 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1450409.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,257174.22 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,263787.12 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62492.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,698458.4 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,968902.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3809.7 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,552.7 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13458.8 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1303724.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1291284.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1291717.2 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,625827.06 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1158452.2 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1149042.2 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1600661.4 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9410.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,228771.61 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,228673.53 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,457445.16 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1670517.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,309899.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,315928.1 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63015.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,809130.06 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1145718.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4365.5 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,213.7 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12847.9 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58236.2 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8065.6 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4054.7 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5432.6 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2165.2 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,783.2 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1772.8 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4063.4 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,30.2 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,341.9 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2704.3 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,242.8 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11772.4 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,52014.1 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7125.2 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,278634.75 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60721.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,740016.9 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1058762.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5496.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,348.8 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15191.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,10234.801 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,1023.60004 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6312.0005 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1839.6001 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,10172.4 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,13436.4 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,11580.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2182.8 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,11304.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,9812.4 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7627.2 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,4699.2 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,14034.001 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,2080.8 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3902.4001 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,5874.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2203.2002 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,4059.6 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,2414.4001 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,7982.4004 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3738.0002 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,11697.601 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,10336.801 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,664.80005 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2070.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16099.2 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3219.6 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,973.2 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,814.80005 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,386.40002 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4677.6 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4784.4 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6711.2 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2168.3 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4373.6 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1619.7 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,737.5 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4293.4 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,56.3 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,586.5 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2322.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1745023E7 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,501.6 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1498.8 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3997.2002 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3628.8 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1779.6001 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5362.8003 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8712.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,289.2 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1554.0001 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3903.6 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3925.2002 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1874.4 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5620.8003 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8809.2 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,146020.81 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,641284.8 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,459100.8 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7893.7 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,527.3 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11840.4 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58476.5 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7887.6 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4174.5 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5519.2 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1704.5 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4004.1 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1660.6 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,670.7 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3803.8 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2692.8 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,4539.6 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1928.4 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9525.601 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4557.6 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,11990.4 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,12349.2 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,5682.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,10978.801 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,21300.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,10033.2 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,18622.8 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,11454.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1063.2001 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6708.0005 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1984.8 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,6061.2 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4806.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2101.2002 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,11215.2 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,15141.601 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,12025.2 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2788.8 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,13850.4 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,9819.601 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,8589.601 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,4080.0002 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,17956.8 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1833.6001 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,4968.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4257.6 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2259.6 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,4905.6 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,2198.4001 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1838.4 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4028.4001 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1150.8 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,516.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,5397.6 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.400001 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,43.2 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,306.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,350.40002 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,5889.6 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2377.2002 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2745.6 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3874.8 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,6744.0005 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,4734.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4522.8003 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1555.2001 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3504.0002 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1119.6001 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,500.40002 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4618.8003 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,13.200001 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,136.8 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1219246.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1204712.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1205084.2 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,561805.9 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1073469.2 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1061956.2 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1455960.2 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11513.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,218814.67 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,217933.69 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,436748.38 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1590960.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,283171.1 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15364.801 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8730.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3553.2002 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5136.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1705.2001 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,756.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2020.8 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18810.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3531.6 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1114.8 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1600.8 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,505.2 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5277.6 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,13.200001 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8762.4 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,460.80002 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,63949.203 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15430.801 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8590.801 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3711.6 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5131.2 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1618.8 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3697.2002 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1102.8 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,466.80002 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,5090.4004 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.400001 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,230.40001 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,300.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,6586.8003 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2491.2002 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3825.6 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3552.0002 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,6894.0005 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,4432.8003 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2058.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,8563.2 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,15171.601 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,11283.601 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2196.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,13282.801 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8115.6 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,7608.0005 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3844.8 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,14283.601 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2130.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,36.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,687.8 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3264.0002 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1834.8 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,10827.601 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,4045.2002 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,13598.4 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,12242.4 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2542.8 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,10258.801 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,25026.002 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,11892.0 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,17208.0 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,14191.2 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,873.60004 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6558.0005 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1450020 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,549681 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,432915 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,11252.4 -ABIDE UCLA_1 Site,0051253,1.18E1,2,Male,1.09E2,1.1E2,1.08E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,286.80002 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1303923.0 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1286714.0 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1287218.4 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,400.3 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3835.2002 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4210.8003 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2186.4001 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,7272.0005 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,4244.4004 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,16770.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2040.0001 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4699.2 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,5436.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,272.40002 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,5053.2 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2157.6 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2907.6 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3475.2002 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,8064.0005 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3630.0002 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1594.8 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,9582.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,13504.801 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,12463.2 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2425.2002 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,10213.2 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,9916.801 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,7321.2 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3378.0002 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,16399.201 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2366.4001 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8402.4 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,7159.2 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,2946.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,14116.801 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2061.6 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3681.6 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,3682.8 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1957.2001 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3048.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1573.2001 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,6133.2 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3634.8 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,11020.801 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,9604.801 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,2766.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,8444.4 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,16194.001 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,7233.6 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,16742.4 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,9867.601 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1076.4 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6338.4004 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,7675.2 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3225.6 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,13939.2 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1902.0001 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,5049.6 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,5955.6 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1938.0001 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,4863.6 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1286.4 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,8143.2 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4480.8003 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,12406.801 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,11426.4 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,4922.4004 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,10935.601 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,22764.0 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,9236.4 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,18945.602 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,12045.601 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1526.4 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6062.4004 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1819.2001 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,7635.6 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4478.4004 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1716.0001 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,8594.4 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,15997.2 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,10842.0 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2241.6 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,13458.001 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,15458.4 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,9717.601 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,8025.6 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,4767.6 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,14397.601 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2938.8 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4828.8003 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,5229.6 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2811.6 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,5319.6 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1674.0001 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,10000.801 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4492.8003 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,14854.801 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,10747.2 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,4988.4004 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,11474.4 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,23827.201 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,12117.601 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,18705.602 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,12404.4 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1236.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,7398.0005 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2602.8 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,6301.2 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4220.4004 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2156.4001 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,10214.4 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,16273.2 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,11492.4 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2478.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,12750.001 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,10063.2 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7922.4004 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,5258.4004 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,16116.001 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,2318.4001 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,4666.8003 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,6444.0005 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2614.8 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3892.8 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,2018.4 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,8781.601 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,4414.8003 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,13615.2 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,11740.801 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2646.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,10276.801 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,26827.201 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,11070.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,17606.4 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,10296.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,949.2 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,7836.0005 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4270.9 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,197.4 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14365.8 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57081.0 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8347.4 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4389.4 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5778.5 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2285.8 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,883.6 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1573.1 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19824.1 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4012.9 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1483.8 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1017.2 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,881.0 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4256.6 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,40.8 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,7560.0005 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,8800.801 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3778.8 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,20148.0 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,2056.8 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,4744.8003 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,15552.001 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,11689.2 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,1042.8 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,7119.6 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,14307.601 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,11512.801 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2635.2002 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,12943.2 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,9070.801 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6470.4004 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3873.6 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,16657.201 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2032.8 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4995.6 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,5720.4004 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2419.2002 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3396.0002 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,860.4 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9015.601 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4702.8003 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,13676.4 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,10998.0 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3494.4001 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,11389.2 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,23652.0 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,9314.4 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,17530.8 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,12141.601 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1276.8 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6456.0005 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2601.6 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5967.6 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4213.2 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2538.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1582.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1003.4 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,746.7 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4098.1 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,46.9 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,543.3 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,704222.1 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,963704.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11715.2 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,9372.0 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,16639.201 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,12631.2 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4459.2 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1890.0001 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,5846.4004 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1880.4 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,7959.6 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,4057.2002 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,13077.601 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,12658.801 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2503.2002 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,10659.601 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,25974.002 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,9988.801 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,9400.801 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,14458.801 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,12231.601 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1379330 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,521532 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,390435 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7910.4004 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,208.8 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,53912.402 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57613.8 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7624.8 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3632.1 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5786.4 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2177.2 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,862.5 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1594.9 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22513.3 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4027.1 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2338.8 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,12986.4 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,9086.4 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7504.8003 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,4123.2 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,16875.602 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1874.4 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,4293.6 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4156.8003 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2046.0001 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3868.8 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,2131.2002 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,8756.4 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3974.4001 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,13892.4 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,10873.2 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,3057.6 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,10808.4 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,24082.8 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,10216.801 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,15506.4 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,11193.601 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,1128.0 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6884.4004 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1740811E7 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,633.60004 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1596.0001 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4206.0 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3374.4001 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2182.8 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6151.2 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8848.801 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,650.4 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1530.0 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4203.6 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4312.8003 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2107.2002 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6858.0005 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9014.4 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,234584.4 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,692343.6 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,531327.6 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,4522.8003 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1374.0 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,7995.6 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4804.8003 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,10726.801 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,10750.801 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,4150.8003 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,13615.2 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,20844.0 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,8143.2 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,18007.201 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,12974.4 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,2163.6 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6736.8003 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2632.8 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,4660.8003 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3885.6 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1886.4 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,8744.4 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,15528.001 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,580.6 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3812.4001 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4730.4004 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2088.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,4054.8 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1930.8 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,8355.601 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4393.2 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,12511.2 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,10068.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,4339.2 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,13994.4 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,23518.8 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,11274.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,16762.8 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,9688.801 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1458.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6624.0005 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2457.6 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,6927.6 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3829.2002 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1519070 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,593700 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,433479 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6032.4004 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,216.00002 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,59685.6 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15753.601 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9608.4 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3964.8 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4557.6 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1815.6001 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,596.4 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1843.2001 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21260.4 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3962.4001 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1152.0 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1042.8 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,547.2 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5486.4004 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,14.400001 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7515.6 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,255.6 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,60084.004 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,16017.601 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2580.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12265.2 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8000.4004 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3630.0002 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5307.6 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1561.2001 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,648.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1725.6001 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17054.4 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3338.4001 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,931.2 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,710.4 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,434.40002 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4779.6 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,18.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3363.6 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,241.20001 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,49976.402 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12367.2 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1308.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3884.4001 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3172.8 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1707.6001 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5412.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8408.4 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,428.40002 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1450.8 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4149.6 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3776.4001 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1654.8 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5484.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8048.4004 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,185497.2 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,465741.62 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,413319.62 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,408.2 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2850.0 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,216.4 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13743.8 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55664.1 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60321.0 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8116.5 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4242.9 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6252.5 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2025.0 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3714.1 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1664.4 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,762.4 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4298.1 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.3 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,518.6 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1392.1 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,13749.601 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2638.8 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,10196.4 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,9086.4 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,5947.2 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3796.8 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,15099.601 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1592.4 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3646.8 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4838.4004 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2413.2002 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3058.8 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1518.0 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,7788.0005 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1928.4 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,9687.601 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,11972.4 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,11565.601 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2466.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,11677.2 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,4743.6 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,10054.801 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,11145.601 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2204.4001 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,9310.801 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,24674.4 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,8967.601 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,15229.2 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,10647.601 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,927.60004 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6921.6 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1879.2001 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,4360.8003 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4242.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2065.2002 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,8239.2 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,12928.801 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,8998.801 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2155.2002 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,12723.601 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,8200.801 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7690.8003 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3687.6 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14563.9 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,66849.9 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7653.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3822.8 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6001.2 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2023.2 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1097.2 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2414.1 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13435.2 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8232.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3193.2002 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4268.4004 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1606.8 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3538.1 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.2 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,654.1 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1029.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21903.7 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4119.2 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1645.4 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1261.8 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,759.3 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4446.9 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,34.9 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,569.4 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8003.4 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,650.6 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14392.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,68925.6 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7539.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4121.8 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6054.6 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1776.6 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3997.8 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1673.9 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4388.4004 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1491.6001 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,4976.4004 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1416.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9426.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4191.6 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,13384.801 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,10917.601 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3874.8 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,9649.2 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,21360.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,9226.801 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,15885.601 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,12681.601 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1022.4 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6273.6 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2830.8 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,7033.2 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4260.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2433.6 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,9346.801 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,13401.601 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,11077.2 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2664.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,11570.4 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,7201.2 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,6379.2 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,4405.2 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,16611.602 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1753.2001 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3612.0002 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4262.4004 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2193.6 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3300.0002 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,2001.6001 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,8642.4 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,4200.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,12304.801 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,10908.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,3841.2002 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,10404.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,22670.4 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,10725.601 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,14710.801 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,9328.801 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,838.80005 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1232650.0 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1216136.0 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1216645.1 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,562159.6 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1097191.1 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1084525.1 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1540221.9 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12666.0 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,228525.31 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,227522.11 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,456047.44 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1611613.0 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,281341.34 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,280818.28 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63272.0 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,736661.6 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1080822.0 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5108.4 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,444.5 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12454.3 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54229.6 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7546.3 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4148.3 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5917.7 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2148.5 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1198.7 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,690.4 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3045.2 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,258.6 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11384.1 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,51886.7 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7161.6 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3649.6 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5141.9 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1580.4 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,736.6 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1631.5 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18273.7 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3884.6 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7438.8003 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,294.0 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1468.8 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2719.2002 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3044.4001 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1714.8 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4302.0 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7270.8003 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,224984.4 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,568816.8 -ABIDE UCLA_1 Site,0051220,1.474E1,1,Male,9.9E1,9.0E1,1.21E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,447439.22 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7828.8003 -ABIDE UCLA_1 Site,0051234,1.091E1,1,Male,8.7E1,8.9E1,9.3E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3944.4001 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1051755.9 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1032793.8 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1423469.4 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,18962.0 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,204996.75 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,202866.72 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,407863.47 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1541058.0 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,286411.28 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,277350.1 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58225.0 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,732629.4 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1028440.0 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,10240.3 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,482.6 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14239.0 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53662.5 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1273.4 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1398.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3909.6 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3651.6 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2013.6001 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,7060.8003 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9656.4 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,637.2 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1188.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4138.8003 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4064.4001 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2089.2002 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,7602.0005 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9138.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,276549.62 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,662154.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,571059.6 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20717.9 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4269.5 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1846.4 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,740.7 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,830.4 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4260.2 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3850.8 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1575.6001 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6351.4 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1975.4 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4323.4 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1680.3 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,820.0 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3999.2 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,21.2 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,791.7 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,817.7 -ABIDE UCLA_1 Site,0051254,1.444E1,2,Male,1.13E2,1.17E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3150.0002 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,4422.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,8006.4004 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3196.8 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2073.6 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,10002.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,14079.601 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,10922.4 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2712.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,10050.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,7310.4004 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,5790.0 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3428.4001 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,14713.2 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1760.4 -ABIDE UCLA_1 Site,0051248,1.35E1,1,Male,1.1E2,1.1E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4598.4004 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,983188.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,970150.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,970501.9 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,432874.47 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,850912.9 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,841090.9 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1318961.9 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9822.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,176490.98 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,176472.44 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,352963.4 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1339425.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,216564.62 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,216309.83 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,53884.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,595171.44 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,839260.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3975.0 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,392.7 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11817.2 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53436.8 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6140.5 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2909.9 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5447.7 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1825.3 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,792.6 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1789.5 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19891.1 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3905.3 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1631.5 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,866.8 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3199.2002 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1720.8 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5785.2 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7827.6 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,471.6 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1256.4 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4405.2 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3550.8 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1902.0001 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1735422E7 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,1081.2001 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1507.2001 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3674.4001 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4786.8003 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2076.0 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6955.2 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,10041.601 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,825.60004 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1688.4 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4677.6 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4820.4004 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2161.2002 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6752.4004 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,10010.4 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,251968.81 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,682333.25 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5481.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1921.3 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4468.6 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1542.8 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,714.4 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4176.6 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,26.7 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,656.4 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,808.3 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1724.4 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5845.2 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8347.2 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,212355.61 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,717135.6 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,462973.22 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1188064.0 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1165933.0 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1167238.9 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,563761.4 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3336.0002 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4262.4004 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1513.2001 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3880.8 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,52130.402 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13908.001 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7782.0005 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3718.8 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5223.6 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1512.0 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3816.0002 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1129.2001 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,493.2 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4779.6 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.6 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,8.400001 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,266.40002 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,312.0 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4441.2 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1840.8 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2508.0 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3015.6 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,5298.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,819.3 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,212.6 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,904.4 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,463.8 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,599.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,503.5 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,691.5 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3755.6 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,7.4 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,544.4 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1363100 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,551268 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,388267 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,10869.601 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,237.6 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,50959.203 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13321.2 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7856.4004 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3574.8 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4930.8003 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1641.6001 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,532.80005 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1526.4 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16965.602 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3193.2002 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,898.80005 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1090.8 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,523.2 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4566.0 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,15.6 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7585.2 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,538.80005 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,51295.203 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13388.4 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7827.6 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3854.4001 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4905.6 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1532.4 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3578.4001 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,992.4 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,468.00003 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4399.2 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.0 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,237.6 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,278.40002 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4738.8003 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2007.6001 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2734.8 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,4041.6 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,6381.6 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,4028.4001 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1785.6001 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,8186.4004 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,12276.0 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,10636.801 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2607.6 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,11108.4 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,9069.601 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1746594E7 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,609.60004 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1092.0 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3898.8 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,139.20001 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,52918.8 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13184.4 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7629.6 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3010.8 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4372.8003 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1460.4 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,774.00006 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1670.4 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16842.0 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3067.2002 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,885.60004 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1083.6001 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,397.2 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4742.4004 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,10.8 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5163.6 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,186.0 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,52777.203 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12907.2 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7624.8003 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3199.2002 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4449.6 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1398.0 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3288.0002 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,885.60004 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,393.6 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4574.4004 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.0 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,45.600002 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,262.80002 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,283.2 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,5008.8003 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1900.8 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2676.0 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3536.4001 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,5731.2 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3781.2002 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1612.8 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,7491.6 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,10125.601 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,9204.0 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2169.6 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,10396.801 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,7944.0005 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6331.2 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3232.8 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,12766.801 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2182.8 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3616.8 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4370.4004 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1472.4 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,5124.0 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1785.6001 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,8690.4 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3198.0002 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,12178.801 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,9626.4 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3366.0002 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,9355.2 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,19467.602 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,8871.601 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,12930.001 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,10540.801 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1448.4 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,5910.0 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2293.2002 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5912.4004 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3886.8 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1624.8 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,7242.0005 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,11392.801 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,9632.4 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2026.8 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,10480.801 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,8053.2 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,6807.6 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3536.4001 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,13515.601 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1850.4 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3667.2002 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4256.4004 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1808.4 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,4917.6 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1824.0001 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,8048.4004 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3298.8 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,11690.4 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,10972.801 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1932.0001 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,8822.4 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,21027.602 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,9681.601 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,12525.601 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1182.0 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6201.6 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2479.2002 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,6178.8003 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4062.0002 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2178.0 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,8824.801 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,14517.601 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,10704.0 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2362.8 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,11360.4 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,8892.0 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,6531.6 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3907.2002 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,14690.4 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1810.8 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3765.6 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,5395.2 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2790.0 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3178.8 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1768.8 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,8683.2 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3912.0002 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,11472.0 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,11924.4 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2336.4001 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,10334.4 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,25093.201 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,9860.4 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,14700.001 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,9079.2 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,964.80005 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6462.0005 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5851.2 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8316.0 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,202256.4 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,691810.8 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,476058.03 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,141.3 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,741.0 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,340.6 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,398.5 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,408.6 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,795.4 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,10147.2 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8114.4004 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6410.4004 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3025.2002 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,15806.4 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1779.6001 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4035.6 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,3428.4001 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1431.6001 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,4923.6 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1596.0001 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,7215.6 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4014.0002 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,11978.4 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,9859.2 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3758.4001 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,9432.0 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,18510.0 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,8359.2 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,17697.602 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,9570.0 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1263.6001 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6147.6 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2768.4001 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5155.2 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4030.8 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2541.6 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,9896.4 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,12919.2 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,11941.2 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2620.8 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,11289.601 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,8226.0 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7118.4004 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3542.4001 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,18349.201 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1726.8 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3921.6 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,5210.4004 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2041.2001 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3237.6 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1622.4 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,8379.601 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,4050.0002 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,10219.2 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,11392.801 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1809.6001 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,8946.0 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,20710.8 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,9444.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,8.400001 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,285.6 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,344.40002 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,6013.2 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2088.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2696.4001 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3223.2002 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,6018.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,4555.2 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1777.2001 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,10443.601 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,15627.601 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,11082.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2188.8 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,12109.2 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,9270.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,7296.0005 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3206.4001 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,15183.601 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2808.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3856.8 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,3936.0002 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2557.2002 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,4304.4004 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1848.0001 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.174245E7 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,600.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1342.8 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4890.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3942.0002 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1785.6001 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5605.2 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8536.801 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,632.4 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1644.0001 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4668.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4290.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1928.4 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5626.8003 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8538.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,206946.02 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,717318.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,496999.22 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3796.8 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6260.9 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1971.7 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3765.1 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1651.7 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,561.7 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4031.4 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,36.5 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,402.9 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1697.2 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,138.6 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,792.0 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3651.6 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1674.0001 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5244.0 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7771.2 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,508.80002 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1100.4 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3525.6 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3555.6 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1678.8 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5270.4004 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7786.8003 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,193898.4 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,254517.61 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,594352.8 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,510153.62 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,8.400001 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4938.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,181.20001 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,44121.6 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11576.4 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7880.4004 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3171.6 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4390.8003 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1358.4 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3408.0002 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,900.00006 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,403.2 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4564.8003 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,7.2000003 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4011.6 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5094.0 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1657.2001 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3799.2002 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1284.0 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,460.80002 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4868.4004 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.800001 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,258.0 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,284.40002 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17868.0 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3475.2002 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1198.8 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1131.6001 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,547.2 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5140.8003 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,13.200001 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6686.4004 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,363.6 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,52628.402 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12729.601 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8083.2 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8688.1 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3958.1 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6051.6 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6480.3 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2241.6 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,964.0 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1969.0 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,23421.6 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4885.5 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,2008.7 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1013.4 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,959.5 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4786.3 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,23.6 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,424.9 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4068.6 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,247.2 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15212.0 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,65484.3 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9210.8 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4303.9 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6593.0 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2039.7 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4879.1 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3241.8 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,291.6 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13597.6 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55116.6 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7901.2 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3901.7 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5322.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1811.4 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4020.6 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1771.5 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,648.5 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3752.2 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,20.4 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,553.7 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,985.8 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,137.1 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1054.8 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,673.9 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,793.2 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,745.6 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1056.6 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3848.4 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,25.7 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,337.4 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2056.8 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,11506.801 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,27266.4 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,12612.001 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,16068.001 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,10483.2 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,756.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,7096.8003 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,974.4 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,759.60004 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5949.6 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,21.6 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4358.4004 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,270.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1041.1 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,149.5 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,536575.25 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,460753.22 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2465.4 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1139.7 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2732.3 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18708.3 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3993.8 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1798.0 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1122.4 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,806.6 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4245.0 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,27.2 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,409.2 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6988.6 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,299.1 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13285.8 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,199.20001 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,57297.6 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15414.001 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,10082.4 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3756.0002 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5662.8003 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1803.6001 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,646.80005 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1772.4 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20204.4 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4623.6 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1196.4 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4930.8003 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1674.0001 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3704.4001 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,979.2 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,585.60004 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4798.8003 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,9.6 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,10.8 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,246.00002 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,297.6 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4586.4004 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1776.0001 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2642.4001 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,2713.2002 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,5203.2 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,2768.4001 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1520.4 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,6577.2 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,10822.801 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,8737.2 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2605.2002 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,9400.801 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,7350.0005 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,5581.2 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7683.6 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4474.0 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5979.6 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2085.4 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4137.0 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1847.4 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,679.9 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3986.3 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.1 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,480.1 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1044.9 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,187.5 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,968.4 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,575.2 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,598.5 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,522.7 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,733.1 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1253920 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,442670 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,366599 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5641.2 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,129.6 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,48504.0 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14448.001 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8712.0 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3819.6 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4994.4004 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1764.0001 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,571.2 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1581.6001 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18090.0 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3523.2002 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,998.4 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1090.8 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,556.80005 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5090.4004 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.2 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5749.2 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,318.0 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,53469.6 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14448.001 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8755.2 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4182.0 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2090.5 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4009.3 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1593.1 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,843.0 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3959.7 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,26.2 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,498.2 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1685.4 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,412928.1 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1542146.0 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,258678.77 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,266007.97 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63973.0 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,708743.75 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1002024.0 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3010.7 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,297.1 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13841.8 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59327.4 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8411.9 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3892.0 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6018.6 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2331.0 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,743.9 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1617.8 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,23033.1 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4064.4 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1458.3 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,629.9 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,653.6 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,8752.801 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,12505.2 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,9979.2 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,19.2 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,220.8 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,248.40001 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4058.4001 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1837.2001 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2017.2001 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3234.0002 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,7000.8003 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3783.6 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,262246.8 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,635751.6 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,520165.22 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4654.8003 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1990.8 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2650.8 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3812.4001 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,5502.0 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3489.6 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2391.6 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,9020.4 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,11076.0 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,10827.601 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2839.2002 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,11334.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,3229.2002 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,11854.801 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8809.2 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6679.2 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3283.2002 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,16060.801 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1761.6001 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3658.8 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,5521.2 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2088.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3523.2002 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1567.2001 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9100.801 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4004.4001 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,7705.2 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3973.2002 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2372.4001 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,8632.801 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,12700.801 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,259892.4 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,645068.44 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,506013.62 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1482420 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,576595 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,419351 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5565.6 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,147.6 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,57810.004 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13723.2 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8659.2 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3681.6 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4788.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1616.4 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,631.2 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1833.6001 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1885.8 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,931.4 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4778.5 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.4 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,458.1 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1631.0 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,1.9 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,204.7 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1146.7 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,718.9 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,973.4 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,843.7 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,877.8 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1677320 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,635791 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,515767 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6484.8003 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,52540.8 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14257.2 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8830.801 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3624.0002 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4980.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1566.0001 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,680.4 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1744.8 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17932.8 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3668.4001 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1243.2001 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,782.4 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,584.4 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5360.4004 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,13.200001 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4868.4004 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,205.20001 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,53277.6 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14240.4 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8742.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3697.2002 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4926.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1444.8 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4155.6 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1188.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3882.7 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5253.4 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1888.3 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,692.3 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1163.8 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19539.3 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4125.6 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,5931.6 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,3151.2002 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,4166.4004 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,2289.6 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,10644.0 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4652.4004 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,15040.801 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,12849.601 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,4610.4004 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,13394.4 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,24454.8 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,9776.4 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,19276.8 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,11606.4 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1246.8 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,7052.4004 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2689.2002 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,7676.4004 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4384.8003 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2396.4001 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,11097.601 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,17389.201 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,11718.0 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,3363.6 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,13424.4 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,9494.4 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,8886.0 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,4644.0 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,19053.602 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1884.0001 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,4136.4004 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,5206.8003 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2518.8 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,4380.0 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,2089.2002 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,9169.2 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,4390.8003 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,13988.4 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,13146.001 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2816.4001 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,11772.0 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,28778.4 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,11392.801 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,19396.8 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,10462.801 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,1147.2001 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6844.8003 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9889.2 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4190.4004 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,13093.2 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,8658.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3932.4001 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,10694.4 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,26130.002 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,8804.4 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,17881.201 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,12560.4 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1191.6001 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,7062.0005 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1826.4 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5210.4004 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,5372.4004 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1959.6001 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,10324.801 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,12606.001 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,12613.2 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2346.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,13512.001 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,9432.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,8943.601 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,4094.4001 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,17163.602 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,2154.0 -ABIDE UCLA_1 Site,0051214,1.041E1,1,Male,1.09E2,1.08E2,1.02E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,4150.8003 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,2113.2002 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,8080.8003 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3060.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,13330.801 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,11580.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,2890.8 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,9134.4 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,17940.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,9051.601 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,16488.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,8821.2 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1083.6001 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,5804.4004 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1506.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5028.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4706.4004 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2191.2002 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,8127.6 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,11500.801 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,9872.4 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2684.4001 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,12686.4 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,595.2 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,288.5 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14184.2 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55555.7 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7969.3 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3335.7 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5691.1 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1939.7 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,539.9 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1039.2 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20830.6 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4442.4 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1725.1 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,661.3 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,724.2 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4447.6 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,45.2 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,431.2 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6962.7 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,566.3 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12912.6 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1741704E7 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62144.0 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,737224.8 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1046798.0 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5816.6 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5586.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9076.801 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,519.60004 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1401.6001 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4074.0002 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3769.2002 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2029.2001 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5442.0 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8665.2 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,235423.2 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,647935.25 -ABIDE UCLA_1 Site,0051269,1.429E1,2,Male,9.4E1,9.5E1,9.5E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,566331.6 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1149944.0 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1138099.0 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1138531.8 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,543771.25 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1017749.7 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1009557.7 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1323053.8 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8192.0 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,200010.12 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,201183.33 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,401193.47 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1495079.0 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,271835.9 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,271935.34 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61737.0 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,711113.25 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1006174.0 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4062.8 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,286.3 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13706.5 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,51001.1 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7657.8 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3755.4 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5916.5 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2029.5 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,774.0 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2137.1 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22159.2 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4193.9 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1850.1 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,893.7 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,806.6 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3858.1 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4257.4 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1851.9 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1127.5 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,828.4 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17592.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3654.0002 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1131.6001 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1203.6001 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,548.4 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5070.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,18.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7449.6 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,182.40001 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,57621.6 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13222.801 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8595.601 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3868.8 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4783.2 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1471.2001 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3800.4001 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1155.6001 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,536.4 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4874.4004 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,2.4 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,240.00002 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,321.6 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,5448.0 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2540.4001 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3181.2002 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,2827.2002 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,6686.4004 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3985.2002 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2383.2002 -ABIDE UCLA_1 Site,0051240,1.496E1,1,Male,1.21E2,1.2E2,1.06E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,11131.2 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,479.7 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1024.8 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,5560.8003 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2253.6 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3342.0002 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3217.2002 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,6178.8003 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,4867.2 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2187.6 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,10462.801 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,11486.4 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,12296.4 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2418.0 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,10002.0 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8904.0 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,7462.8003 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3901.2002 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,14492.4 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2343.6 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3733.2002 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4994.4004 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1980.0001 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,5037.6 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1867.2001 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,11610.0 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4231.2 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,12753.601 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,10804.801 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,4353.6 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,11216.4 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,23671.201 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,12224.4 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,18786.0 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,14383.2 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1431.6001 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,5898.0 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1996.8 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5889.6 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3741.6 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2410.8 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,9938.4 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,14972.4 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,13123.2 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2659.2002 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,13180.801 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,9552.0 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,8350.801 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3507.6 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,15931.2 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,2196.0 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3196.8 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,6436.8003 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,5054.4004 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,7.2000003 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,214.8 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2842.8 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,12552.001 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,9691.2 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7510.8003 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,5054.4004 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,17334.0 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1622.4 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,5040.0 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4712.4004 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,3004.8 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3438.0002 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1328.4 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,8355.601 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,4168.8003 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,11934.0 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,12259.2 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2509.2002 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,10654.801 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,28362.002 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,9571.2 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,19047.602 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,11047.2 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,898.80005 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6582.0005 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17718.2 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3447.4 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1406.3 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,675.6 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,757.9 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3853.1 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,37.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1737.6001 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3752.4001 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4152.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2418.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3745.2002 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1830.0001 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,9310.801 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3936.0002 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,12613.2 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,9038.4 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2032.8 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,9118.801 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,24426.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,10710.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,14767.2 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,9313.2 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,1084.8 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,5667.6 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1783.2001 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4081.2002 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,5926.8003 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2086.8 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,4292.4004 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,2314.8 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9127.2 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3876.0002 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,12412.801 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,9108.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,4053.6 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,8199.601 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,19846.8 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,10591.2 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,15782.4 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,9344.4 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1123.2001 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,5482.8003 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2028.0001 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,6048.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4329.6 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2140.8 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,7671.6 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,10800.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,9240.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2532.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,12764.4 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,8284.801 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7978.8003 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3760.8 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,12400.801 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,613636.8 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1250030.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1215607.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1216485.5 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,586855.9 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1115099.5 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1083494.5 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1544042.6 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,31605.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,216674.08 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,216999.55 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,433673.62 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1613780.0 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,350.8 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,696.6 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3420.3 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5578.4 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8760.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,582.0 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1294.8 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5404.8003 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4569.6 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1999.2001 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5654.4004 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8474.4 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,221080.81 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,708735.6 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,522739.22 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15272.1 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62908.3 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8711.4 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4350.2 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5214.7 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2198.9 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,877.0 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1846.2 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,23306.9 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,464.7 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,731.1 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9149.0 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,230649.03 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,227340.36 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9573.601 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4094.4001 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4374.0 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1674.0001 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4051.2002 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1099.2001 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,490.80002 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,5295.6 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.400001 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,4.8 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,194.40001 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,270.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,483.6 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1104.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3594.0002 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3543.6 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1640.4 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4808.4004 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6860.4004 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,376.80002 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1236.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3610.8 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3336.0002 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1687.2001 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4794.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6789.6 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,202792.81 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,544341.6 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,390898.8 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1158728.0 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1149174.0 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1148662.9 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,524686.75 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1010987.8 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,757.5 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2000.2 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,238.7 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1067.1 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,582.7 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,460.8 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,334.80002 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4586.4004 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1972.8 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2398.8 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,4543.2 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1745555E7 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,658.80005 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1046.4 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4094.4001 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3199.2002 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1886.4 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6030.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8364.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,650.4 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1482.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4029.6 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4086.0002 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1856.4 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5666.4004 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7875.6 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1613.8 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,787.4 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,767.3 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,849.60004 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1537.2001 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15999.601 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3693.6 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,942.00006 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,676.80005 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,386.40002 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4760.4004 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,7.2000003 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6411.6 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,250.8 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,53464.8 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12553.2 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7899.6 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3243.6 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4164.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1291.2001 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3526.8 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1138.8 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,254.40001 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4584.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,92.4 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,217.20001 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4664.4004 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2125.2002 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3037.2002 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,2401.2002 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,5404.8003 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3146.4001 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1250.4 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,6591.6 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,4851.6 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3172.8 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1838.4 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,8647.2 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,10947.601 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,10104.0 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2410.8 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,11365.2 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8166.0005 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6105.6 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57002.0 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7610.8 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3592.2 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5698.9 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1763.1 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4683.6 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1960.9 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,616.9 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4120.5 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,43.3 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,480.2 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1062.2 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5646.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8562.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,209960.4 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,652770.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,510793.22 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,294386.4 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,292469.47 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59870.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,755695.9 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1079405.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,15911.7 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,592.5 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14468.5 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53386.3 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1460980 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,580016 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,414252 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,16515.602 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,270.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,51776.402 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13582.801 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8316.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3282.0002 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4804.8003 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1508.4 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,582.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1309.2001 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16946.4 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3834.0002 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1224.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,752.4 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,375.6 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4864.8003 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.400002 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,13377.601 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,526.80005 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,52954.8 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13480.801 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8346.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3400.8 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4857.6 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1394.4 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4114.8003 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1237.2001 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,368.40002 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4842.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.400001 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,8.400001 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,238.8 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,3970.8 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,14492.4 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3164.4001 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,871.2 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,808.80005 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,388.80002 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4035.6 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.400002 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5616.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1472100 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,556216 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,414027 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,12339.601 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,294.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,58009.203 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15102.001 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8251.2 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4015.2002 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5047.2 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1653.6001 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1119.6001 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1780.4 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,61167.6 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15387.601 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9770.4 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3952.8 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5625.6 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1767.6001 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4702.8003 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1201.2001 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,675.60004 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,5763.6 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,26.400002 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,13.200001 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,267.6 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,309.6 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4820.4004 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1700.4 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3415.2002 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3712.8 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3769.2002 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4716.0 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1588.8 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1106.4 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2607.6 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15451.2 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3752.4001 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1003.2 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,970.80005 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,422.40002 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4874.4004 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,15.6 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8546.4 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,568.80005 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,57171.6 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13750.801 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8485.2 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3926.4001 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4651.2 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1515.6001 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3776.4001 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,963.60004 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8010.0005 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,202626.02 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,568893.6 -ABIDE UCLA_1 Site,0051261,1.779E1,2,Male,9.5E1,9.0E1,1.0E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,489492.03 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1897.2001 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20424.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3793.2002 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1144.8 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1347.6001 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,487.2 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5740.8003 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.400002 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,12258.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,374.40002 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1744909E7 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,584.4 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1314.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3678.0002 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4051.2002 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1922.4 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5312.4004 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8865.601 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,381.6 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1327.2001 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3889.2002 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2197.4 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19331.0 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4048.9 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1767.7 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1056.4 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,820.9 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3799.5 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,850.1 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4515.3 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,75.3 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,319.2 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2828.1 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,255.0 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15538.5 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,66864.3 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9090.9 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4485.4 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5954.7 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1951.2 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4276.2 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,471.6 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4584.0 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.400001 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,163.20001 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,237.6 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4422.0 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1712.4 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2671.2002 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,48.8 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,455.2 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6894.8 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,495.5 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12789.7 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55168.2 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6831.9 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,207.1 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,783.2 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,410.5 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,534.1 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5472.1 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,256.6 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13308.1 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61314.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8620.5 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4628.6 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6531.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2037.9 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4696.8 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1835.9 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,949.5 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4478.9 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,73.8 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,502.4 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1366.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,207.3 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,729.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,433.5 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,568.3 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,398.4 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,828.9 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,8270.4 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,4542.0 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2113.2002 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,10588.801 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,13687.2 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,9675.601 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,3297.6 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,12313.2 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,9048.0 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,8708.4 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3678.0002 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,15735.601 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2538.0 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4897.2 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,3448.8 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1971.6001 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,5498.4004 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1695.6001 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,10450.801 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4201.2 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,15488.4 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,13270.801 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,4795.2 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,15308.4 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,26450.4 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,10639.2 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,17134.8 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,11826.0 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1161.6001 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,7300.8003 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2121.6 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5398.8003 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4753.2 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2266.8 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,10815.601 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,14652.001 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,12860.4 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,3019.2002 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,13768.801 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,9825.601 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,9204.0 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,4486.8003 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,17168.4 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,2200.8 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3841.2002 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4874.4004 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,8085.6 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7491.6 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3735.6 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,12403.2 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1785.6001 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,4653.6 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4023.6 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1591.2001 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,4018.8 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,2475.6 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,7987.2 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,2725.2002 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,11038.801 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,10602.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1807.2001 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,8580.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,21878.4 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,9804.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,14899.2 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,8401.2 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,696.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,5918.4004 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,619.1 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1418520 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,585197 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,379749 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7744.8003 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,364.80002 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,52354.8 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12004.801 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8452.801 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4225.2 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4598.4004 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1548.0001 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1080.0 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1342.8 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,14917.2 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3580.8 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7885.2 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,510.00003 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1395.6001 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4482.0 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3832.8 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1660.8 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4912.8003 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7771.2 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,169621.2 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,566604.0 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,411913.22 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1744865E7 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,687.60004 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1269.6001 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4137.6 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3802.8 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1849.2001 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5170.8003 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9109.2 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,597.60004 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1424.4 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3822.0002 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3805.2002 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1863.6001 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5334.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8742.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,211990.81 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,671476.8 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,505617.62 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3372.0002 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,12925.2 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1383.6001 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,2331.6 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,3147.6 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1615.2001 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3495.6 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1443.6001 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,6163.2 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3438.0002 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,9435.601 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,8590.801 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,2336.4001 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,10274.4 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,16345.2 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,6402.0005 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,13850.4 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,8108.4004 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,700.80005 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,5666.4004 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2419.2002 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,3232.8 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,2793.6 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1771.2001 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,7334.4004 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,11377.2 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,7628.4004 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,787.2 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3096.0002 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3232.8 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1212.0 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,2966.4001 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,5547.6 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,230710.81 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,482696.4 -ABIDE UCLA_1 Site,0051215,1.156E1,1,Female,1.13E2,1.04E2,1.19E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,483392.4 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,974282.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,957114.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,957120.4 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,474088.25 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,859536.4 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,847944.4 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1228263.8 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11592.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,160448.23 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,159528.86 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,319977.1 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1294498.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,237031.17 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,237057.08 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,51158.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,617382.25 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,845199.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5369.6 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,322.4 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10761.7 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,46042.7 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6403.4 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3545.1 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4552.8 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1715.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,897.5 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,4246.5 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16390.8 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3478.4 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1114.7 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,658.2 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,578.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3343.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,55.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,335.5 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5315.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,236.3 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,9720.6 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,44615.9 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6055.0 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,8570.4 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2258.4001 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,9082.801 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8253.601 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6300.0005 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,2696.4001 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,13473.601 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1752.0001 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3471.6 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,3759.6 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1758.0001 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1740682E7 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1752616E7 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,10512.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,15034.801 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,10917.601 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,910.80005 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6069.6 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,5408.4004 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3721.2002 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,8622.0 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,9025.2 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1478.4 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,7827.6 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,17842.8 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,5954.4004 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,11404.801 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,8143.2 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,615.60004 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,5592.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1284010 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,438386 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,393368 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4716.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,147.6 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,51744.004 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12642.001 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7810.8003 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2749.2002 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4084.8 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1272.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7576.8003 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3612.0002 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,15052.801 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,2110.8 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3571.2002 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,5094.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2232.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,5481.6 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1896.0001 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,8848.801 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3480.0002 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,12944.4 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,10167.601 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2107.2002 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,10086.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,25270.8 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1354.8 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3454.8 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3868.8 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1604.4 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4966.8003 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7662.0005 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,228670.81 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,481363.22 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,393999.62 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,7026.0005 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,13568.4 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,11536.801 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,3022.8 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,12548.4 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,8314.801 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,6780.0005 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3957.6 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,17960.4 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,2210.4001 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3478.8 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,3681.6 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2005.2001 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3966.0002 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,2019.6001 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,8196.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,4069.2002 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,11823.601 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,11914.801 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2468.4001 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3396.0002 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,5691.6 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,4124.4004 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1382.4 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,8847.601 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,11431.2 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1114902.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1746328E7 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,478.4 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3262.3 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,89.8 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,511.4 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,796.3 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2421.6 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,10588.801 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,7282.8003 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,5965.2 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3792.0002 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,11278.801 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1419.6001 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,2736.0 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,3111.6 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1542.0001 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,2901.6 -ABIDE UCLA_1 Site,0051258,1.155E1,2,Male,9.0E1,9.1E1,9.2E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1831.2001 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,463.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,619.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,5439.6 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,22.800001 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,12.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,334.80002 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,397.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,5778.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2074.8 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2787.6 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,4273.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,9704.4 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,4564.8003 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2210.4001 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,9888.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,16125.601 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,10843.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,3537.6 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,14809.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,9558.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,8557.2 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,645.60004 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1321.2001 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3896.4001 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4576.8003 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2010.0001 -ABIDE UCLA_1 Site,0051224,1.299E1,1,Male,1.12E2,1.19E2,1.05E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5587.2 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9122.5 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4365.5 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5959.5 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2154.2 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,9679.2 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,20260.8 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,8708.4 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,13578.001 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,11121.601 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,759.60004 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6865.2 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,11185.2 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2112.0 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,11376.0 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,58.7 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,416.5 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3404.3 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,175.6 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3889.2002 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,9928.801 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,18284.4 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,7654.8003 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,17302.8 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,9219.601 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,990.00006 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6043.2 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2374.8 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,3728.4001 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3630.0002 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1783.2001 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,9385.2 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,15843.601 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,9528.0 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2100.0 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,10986.0 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,7752.0005 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,6218.4004 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3316.8 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,14527.2 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1842.0001 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3819.6 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,3596.4001 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1572.0001 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3945.6 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1981.2001 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,6567.6 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3550.8 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,10353.601 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,10579.2 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1773.6001 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,8073.6 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,19855.201 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,8830.801 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,15337.2 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,11889.601 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,980.4 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,22557.602 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,10597.2 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,17215.201 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,11580.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1124.4 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,5990.4004 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2618.4001 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,6649.2 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3874.8 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1428.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,8682.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,14316.001 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,11414.4 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3520.8 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1998.0001 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,8530.801 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,10838.4 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,10744.801 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2110.8 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,10212.0 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,7035.6 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,7026.0005 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3426.0002 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4116.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1921.2001 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1263802.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1242755.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1243442.2 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,602597.7 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1109852.2 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1092698.2 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1511669.4 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,17154.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,214366.4 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,211576.19 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,425942.6 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1612436.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,301597.62 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,301000.03 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61200.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,793375.7 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1088935.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8987.4 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,481.5 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12744.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63468.6 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7422.2 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4760.7 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5390.9 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,752.5 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1552.9 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22723.5 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4219.1 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1886.5 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,734.2 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3884.4001 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1867.2001 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6374.4004 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9006.0 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3214.8 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3430.8 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1497.6001 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4672.8003 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7466.4004 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,421.2 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1484.4 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3519.6 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3475.2002 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1657.2001 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5078.4004 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7627.2 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,197223.61 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,594784.8 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,451875.62 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,11773.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,20456.4 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,12608.4 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1632.0001 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,7816.8003 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2647.2002 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,7813.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,5185.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2576.4001 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,10581.601 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,15682.801 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,11992.801 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,3123.6 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,15028.801 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,605108.75 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1144617.4 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1131013.4 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1603034.1 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13604.0 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,228839.55 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,228435.11 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,457274.66 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1754340.0 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,303396.4 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,301712.34 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65923.0 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,799768.75 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1127715.0 -ABIDE UCLA_1 Site,0051221,1.458E1,1,Male,7.5E1,7.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5536.7 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1791.4 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,878.0 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4458.7 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,22.2 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,427.7 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.175145E7 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,450.00003 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1034.4 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,184.3 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,838.9 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,394.9 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,692.9 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,661.4 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,757.1 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3714.0002 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,2007.6001 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,6424.8003 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3517.2002 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,10358.4 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,10448.4 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8234.4 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6343.2 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,2834.4001 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,15711.601 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2091.6 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4051.2002 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,5752.8003 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2516.4001 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3597.6 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1802.4 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9183.601 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3370.8 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,13780.801 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,8926.801 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3278.4001 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,11034.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1602170 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,649856 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,442726 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6718.8003 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,212.40001 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,57152.402 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14454.001 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,10174.801 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4590.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6049.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1976.4 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,709.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1605.6001 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19671.602 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4035.6 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1194.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1363.2001 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,612.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5649.6 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,30.000002 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5979.6 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,139.20001 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,58069.203 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14102.4 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,10008.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4375.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6048.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1843.2001 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4123.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1405.2001 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1257993.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1230492.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1229735.5 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,549734.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1091377.5 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1624.8 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4249.2 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3915.6 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2156.4001 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6121.2 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9240.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,646.80005 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1506.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4669.2 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4578.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2197.2002 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6060.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9495.601 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,299965.22 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,636498.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,543163.25 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,1.0 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,148.9 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,877.1 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,419.5 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,722.5 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,545.2 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,967.3 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1068014.5 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1651842.5 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,23363.0 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,228557.83 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,220271.67 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,448829.5 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1728872.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,7888.8003 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,15038.4 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,5808.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,11425.2 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,7788.0005 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,780.00006 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,3996.0002 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1228.8 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5214.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3447.6 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1183.2001 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,6806.4004 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,10266.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,8066.4004 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,1332.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,7588.8003 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,6604.8003 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7300.8003 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,2560.8 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,12289.2 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1576.8 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,2827.2002 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,3562.8 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1464.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,2844.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1028.4 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,4869.6 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,2430.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,8614.801 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,8216.4 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1454.4 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,6556.8003 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,16280.4 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,5778.0 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,534.0 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1297.2001 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11755.2 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8470.801 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4448.4004 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4504.8003 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1437.6001 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3673.2002 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,981.60004 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,452.40002 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4510.8003 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,8.400001 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,6.0 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,222.00002 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,346.80002 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,5241.6 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1796.4 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2848.8 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,4298.4004 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,6202.8003 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3998.4001 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1788.0001 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,9500.4 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,14640.001 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,10030.801 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,3459.6 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,11551.2 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,9627.601 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6756.0005 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,4713.6 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,13620.001 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1914.0001 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3892.8 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,6450.0005 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,3054.0 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3038.4001 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1744.8 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,7900.8003 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4182.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1739234E7 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,698.4 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1749788E7 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,518.4 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1302.0 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3153.6 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3859.2002 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1718.4 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5200.8003 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7807.2 -ABIDE UCLA_1 Site,0051282,1.273E1,2,Female,9.1E1,9.6E1,8.8E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,220.8 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2118.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,8868.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,13970.4 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,10654.801 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,3097.2002 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,11328.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8312.4 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6994.8003 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3312.0002 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,14324.4 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1995.6001 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3446.4001 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,2978.4001 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1681.2001 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,4594.8003 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1398.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,7736.4004 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4016.4001 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,11407.2 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,10365.601 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3310.8 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,10454.4 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,18991.201 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,8216.4 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,15358.801 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,9314.4 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,932.4 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6148.8003 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1886.4 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,4978.8003 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3783.6 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2516.4001 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1272390 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,503505 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,368480 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3789.6 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,169.20001 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,52527.6 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13572.001 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8654.4 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3206.4001 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4758.0 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1548.0001 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,528.0 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1236.0 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15694.801 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3898.8 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,955.2 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,922.80005 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,493.2 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4608.0 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,24.0 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3522.0002 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,228.00002 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,53629.203 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13261.2 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8494.801 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3435.6 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4672.8003 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1431.6001 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4026.0002 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,927.60004 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,470.40002 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4376.4004 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,9.6 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,9.6 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,260.40002 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,330.0 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,5078.4004 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1609.2001 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3398.4001 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3267.6 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,4581.6 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3550.8 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1545.6001 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,7719.6 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,12888.001 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,9225.601 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2750.4001 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,10729.2 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8091.6 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,5895.6 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3333.6 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,12949.2 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2146.8 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3462.0002 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,2736.0 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1992.0001 -ABIDE UCLA_1 Site,0051227,1.453E1,1,Male,9.5E1,1.01E2,8.7E1,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1739557E7 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,58959.6 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15187.2 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8522.4 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4033.2002 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5113.2 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1618.8 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4164.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1092.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,451.2 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,5526.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.800001 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,2.4 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,303.6 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,394.80002 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,6080.4004 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2065.2002 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3079.2002 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3189.6 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,5804.4004 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,2847.6 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2293.2002 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,10284.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,13035.601 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,12387.601 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,465.2 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2908.4 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,328.3 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11715.3 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55677.2 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6841.5 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3732.6 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,554.4 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1435.2001 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3622.8 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3648.0002 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1851.6001 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5034.0 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8002.8003 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,248666.4 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,608912.44 -ABIDE UCLA_1 Site,0051210,1.656E1,1,Male,9.2E1,9.1E1,9.9E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,518307.62 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,10984.801 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,6948.0005 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,538.80005 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,4982.4004 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,248.40001 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,56368.8 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13591.2 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9060.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3914.4001 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4767.6 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1648.8 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3973.2002 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1090.8 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,502.80002 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,5124.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.2 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,10.8 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,259.2 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,320.40002 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4732.8003 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2187.6 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3562.8 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,4310.4004 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,5796.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3883.2002 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2041.2001 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,9722.4 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,14856.001 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,10155.601 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2764.8 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,11922.0 -ABIDE UCLA_1 Site,0051252,1.099E1,2,Male,1.16E2,1.1E2,1.18E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8652.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1438100 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,13656.001 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,11239.2 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3932.4001 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,11028.0 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,23204.4 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,9548.4 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,14761.2 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,12200.4 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2702.4001 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,11001.601 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8313.601 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6979.2 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3613.2002 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,15687.601 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2020.8 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3735.6 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4051.2002 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2218.8 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3400.8 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1858.8 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9134.4 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3066.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,11636.4 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,10191.601 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3354.0002 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,12259.2 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,20281.201 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,10797.601 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3714.0002 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4879.2 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1503.6001 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4176.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1122.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,530.4 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,5062.8003 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.800001 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,21.6 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,7522.8003 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3507.6 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,11272.801 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,9870.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2140.8 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,7810.8003 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,19478.4 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,9460.801 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,14254.801 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,9294.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,704.4 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6691.2 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1433751.0 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1419225.0 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1420071.8 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,641768.1 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1279817.8 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1268945.8 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1815374.5 -ABIDE UCLA_1 Site,0051206,1.578E1,1,Male,1.02E2,1.04E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10872.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1018.80005 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6740.4004 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,10077.601 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,8001.6 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3734.7 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,32.7 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,562.7 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4858.4 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,280.3 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12982.8 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54583.5 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6779.0 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3513.7 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5096.1 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,65183.5 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7247.1 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4732.3 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5402.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1807.2 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4048.5 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1777.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,811.5 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3664.4 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.4 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,620.1 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1067.7 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4855.2 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3939.6 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1942.8 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5371.2 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8889.601 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,696.0 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1306.8 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5673.6 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4465.2 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2001.6001 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5758.8003 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9067.2 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,220503.61 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,731011.25 -ABIDE UCLA_1 Site,0051249,8.49E0,1,Male,1.07E2,1.03E2,1.12E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,531056.44 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1747813E7 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,630.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1455.6001 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3643.2002 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4164.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1836.0001 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5071.2 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,9516.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1099.2001 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,5288.4004 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2192.4001 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5409.6 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4030.8 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1750.8 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,8643.601 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,12807.601 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,9996.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,302.40002 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,54903.6 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13225.2 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8354.4 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1711.2001 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3441.6 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,531.60004 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,5986.8003 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3080.4001 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,7998.0005 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,8419.2 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3406.8 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,1557.6001 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,7353.6 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,6770.4004 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6730.8003 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3373.2002 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,11598.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,16932.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,11389.2 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,981.60004 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6477.6 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2011.2001 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5206.8003 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3909.6 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1934.4 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9303.601 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3943.2002 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,14019.601 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,8665.2 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3216.0002 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,12105.601 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,11744.4 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2436.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,10395.601 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7561.2 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3384.0002 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4396.8003 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1378.8 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3350.4001 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,952.80005 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,471.6 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4716.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.800001 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,39.600002 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,237.6 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,288.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4783.2 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2061.6 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2710.8 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3590.4001 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,5373.6 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3565.2002 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1732.8 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,8227.2 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,12296.4 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,8193.601 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2049.6 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,9988.801 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,6632.4004 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6016.8003 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,2862.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,11028.0 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051266,1.403E1,2,Male,1.08E2,1.08E2,1.07E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1760.4 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3210.0002 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,3091.2002 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,2908.8 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2173.2002 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,8572.801 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,14564.4 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,10314.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2522.4001 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,12404.4 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,8762.4 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7087.2 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3625.2002 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,14731.2 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,2463.6 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,4185.6 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4834.8003 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2724.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3469.2002 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1437.6001 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1248347.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1237014.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1237396.2 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,586820.4 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1112177.2 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1103253.2 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1530669.5 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8924.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,227373.86 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,225706.02 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,453079.88 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1659690.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8563.2 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,361.2 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,55096.8 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12108.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8888.4 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3957.6 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4860.0 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1749032E7 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,609.60004 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1363.2001 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3772.8 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3409.2002 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1869.6001 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4845.6 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7948.8003 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,577.2 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1113.6001 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3908.4001 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3390.0002 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1843.2001 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,560.4 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1520.4 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3981.6 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4285.2 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2043.6001 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6226.8003 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8695.2 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,247099.2 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,638559.6 -ABIDE UCLA_1 Site,0051237,1.74E1,1,Male,1.0E2,9.4E1,1.12E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,510835.22 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,238.8 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,256.80002 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,5354.4004 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1814.4 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2890.8 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,2529.6 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,5877.6 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3990.0002 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1880.4 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3880.8 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,3051.6 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2114.4001 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3900.0002 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1524.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,8340.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3380.4001 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,11349.601 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,8806.801 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3576.0002 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,9750.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,19592.4 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,8635.2 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,14842.801 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2110.8 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,8032.8003 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,21822.0 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,8550.0 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1514230 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,602716 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,421431 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7198.8003 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,236.40001 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,63130.8 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14991.601 -ABIDE UCLA_1 Site,0051222,1.181E1,1,Male,1.13E2,1.06E2,1.14E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8917.2 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6446.4004 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4718.5 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1682.3 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3435.5 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1153.7 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,14690.4 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1977.6001 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3775.2002 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4321.2 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2344.8 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,4108.8003 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,2504.4001 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,10215.601 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3968.4001 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,13305.601 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,10344.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1773.6001 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,9676.801 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,23275.201 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,9230.4 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,17017.201 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,10579.2 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,1209.6001 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6962.4004 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2090.4001 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,7962.0005 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,9487.2 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,9464.4 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2749.2002 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,10575.601 -ABIDE UCLA_1 Site,0051275,1.574E1,2,Male,1.06E2,9.9E1,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,7134.0005 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1835.5 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,947.4 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1852.4 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20351.3 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4009.1 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1863.7 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,823.2 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,744.6 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4153.4 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,24.2 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,289.4 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4304.1 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,216.8 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13976.6 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60560.2 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7937.5 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3993.9 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5624.5 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1632.6 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4194.1 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1897.1 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,721.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4249.8 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,408.5 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1537.4 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1593.6001 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5156.4004 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1646.8 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3537.2 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1541.0 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,523.2 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3849.0 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,17.5 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,541.2 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,436.1 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,144.5 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1133.2 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,612.9 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,488.8 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,444.3 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,846.6 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,10359.601 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3777.6 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,11888.4 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,20419.201 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,9956.4 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,15908.4 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,11737.2 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1249.2001 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6824.4004 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2074.8 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,6804.0005 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,5470.8003 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2286.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,9972.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,13076.4 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,11904.0 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2176.8 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,13479.601 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,7978.8003 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,8744.4 -ABIDE UCLA_1 Site,0051256,1.504E1,2,Male,1.08E2,1.06E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,4200.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1747099E7 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,495.6 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7483.2 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,11959.2 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,10078.801 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,5820.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,12224.4 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8508.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,534.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1299.6001 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3870.0002 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4296.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1894.8 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5772.0 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8169.6 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,198505.2 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,705310.8 -ABIDE UCLA_1 Site,0051277,1.201E1,2,Male,1.26E2,1.28E2,1.19E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,505473.62 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2193.7 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,12630.001 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,9430.801 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2034.0001 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,11738.4 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,176.3 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,762.2 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,436.8 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,338.7 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,369.5 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,636.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,560.7 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1150.8 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,931.2 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,991.2 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,469.2 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4657.2 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,9.6 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,10933.2 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,304.80002 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,52246.8 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,796.1 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2581.1 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18831.4 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3979.7 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1898.9 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,743.3 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,786.5 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3802.8 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,31.6 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12773.1 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,52362.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7851.2 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3579.4 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5388.3 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1610.9 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3591.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1600.4 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,654.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3902.2 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.2 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,13837.2 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,9722.4 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,805.2 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,5965.2 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,15696.001 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,9855.601 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,901.2 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6374.4004 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,10390.801 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3693.6 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4294.8003 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1596.0001 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3780.0002 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1042.8 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,463.2 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,5203.2 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,4.8 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,10.8 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,193.20001 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,344.40002 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4225.2 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1603.2001 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3296.4001 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,5030.4004 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,7106.4004 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,4366.8003 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1244.4 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,9776.4 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,12687.601 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,10836.0 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2499.6 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,10708.801 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,6631.2 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,704.4 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1485.6001 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3568.8 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3891.6 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1756.8 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5606.4004 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8383.2 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,540.0 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1280.4 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3590.4001 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3648.0002 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1786.8 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5400.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,24530.4 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,9460.801 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,16815.602 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,10593.601 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,966.00006 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6518.4004 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,4456.8003 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,7568.4004 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3736.8 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2444.4001 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,9784.801 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,13375.2 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,11290.801 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2520.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,13449.601 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,9271.2 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7664.4004 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3890.4001 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,850.80005 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,367.2 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,3877.2002 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,13.200001 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,114.00001 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,246.00002 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,3826.8 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1624.8 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2564.4001 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3309.6 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,4435.2 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,2323.2002 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1674.0001 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,6447.6 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,11050.801 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,9098.4 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2460.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,7744.8003 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,6620.4004 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,5000.4004 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,2976.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,11484.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2055.6 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3267.6 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,3224.4001 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2095.2002 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,292.80002 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,41043.6 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10946.4 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6814.8003 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3570.0002 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4333.2 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1404.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3184.8 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,14947.2 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,11949.601 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,1039.2001 -ABIDE UCLA_1 Site,0051268,1.778E1,2,Male,1.05E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6213.6 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,868.4 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,447.8 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,415.7 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,443.5 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,831.1 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1493170 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,517134 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,458209 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7941.6 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,303.6 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,56053.203 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15722.4 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9412.801 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4062.0002 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5883.6 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2160.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,694.80005 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1950.0001 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19611.602 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4033.2002 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1206.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1339.2001 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,499.2 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5686.8003 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,13.200001 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5899.2 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,384.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,59173.203 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,16069.2 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9322.801 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4191.6 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5674.8003 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1983.6001 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4092.0002 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1239.6001 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,423.6 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,5673.6 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,1.2 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,247.20001 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,303.6 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,136.9 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,738.3 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,323.9 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,390.4 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,508.5 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,872.2 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6650.4004 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3805.2002 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,15357.601 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1731.6001 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3453.6 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9009.1 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4947.9 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6764.8 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2267.6 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1101.5 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1590.9 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21863.6 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4286.5 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1568.8 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1068.4 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,812.5 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4625.3 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,35.9 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,9854.4 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,10368.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,4065.6 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,15648.001 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1987.2001 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,4332.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4345.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2761.2002 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,4855.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,3166.8 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,8912.4 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,4177.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,12768.001 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,14544.001 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2697.6 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,13256.4 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,30650.4 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,11913.601 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,20464.8 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,13320.001 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,1094.4 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,7988.4004 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8510.4 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,170419.2 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,620720.44 -ABIDE UCLA_1 Site,0051241,1.09E1,1,Male,9.5E1,1.05E2,8.7E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,458284.8 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,5269.2 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2211.6 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3310.8 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3466.8 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,6020.4004 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,135.5 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,689.8 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,394.8 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,451.2 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,730.9 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1318850 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,489239 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,377117 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4028.4001 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,130.8 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,52554.004 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14904.001 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7620.0005 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3267.6 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4413.6 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1494.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,474.00003 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1866.0001 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18932.4 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3006.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,962.4 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,678.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,429.6 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4821.6 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,16.800001 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3735.6 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,172.8 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,53679.6 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14994.001 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,9505.2 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1723.2001 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,7479.6 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,22521.602 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,8740.801 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,13842.001 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,9511.2 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,852.00006 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,5881.2 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4033.2002 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2583.6 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,4575.6 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1225.2001 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9254.4 -ABIDE UCLA_1 Site,0051216,1.054E1,1,Male,1.07E2,1.12E2,8.9E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3618.0002 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3096.0002 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2670.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,9140.4 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,15895.2 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,12152.4 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,3043.2002 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,11775.601 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,8960.4 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,8770.801 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3512.4001 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,17965.201 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,2120.4001 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3897.6 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,2952.0 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2421.6 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,4137.6 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1616.4 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,8853.601 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3469.2002 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,10545.601 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,10624.801 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1731.6001 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,10647.601 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,24010.8 -ABIDE UCLA_1 Site,0051205,1.794E1,1,Male,1.02E2,9.9E1,1.05E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,9844.801 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,3201.6 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,14368.801 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8995.2 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,7573.2 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,4148.4004 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,16444.8 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2030.4 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4516.8003 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,4654.8003 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1018.80005 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,531.60004 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4459.2 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.0 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,3.6000001 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,234.00002 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,361.2 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4671.6 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1894.8 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3060.0 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3417.6 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1224750 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,497492 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,338613 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4213.2 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,289.2 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,49951.203 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12381.601 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1004264.8 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1417857.5 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6723.0 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,204738.95 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,208189.14 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,7537.2 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,6580.8003 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3217.2002 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,12688.801 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1929.6001 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3458.4001 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,3508.8 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2385.6 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,4032.0002 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1954.8 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,6087.6 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3080.4001 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,11161.2 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,8974.801 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1528.8 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,7692.0005 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,16465.201 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,7906.8003 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,12556.801 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,9163.2 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,607.2 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,5118.0 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,371990 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4827.6 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,172.8 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,49918.8 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14000.4 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8014.8003 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3580.8 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5220.0 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1635.6001 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,502.80002 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1988.4 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19545.602 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2346.0 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,11068.801 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,15274.801 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,14223.601 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,23714.4 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,11676.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,15691.2 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,8548.801 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,783.60004 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6772.8003 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8137.2 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3614.4001 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5089.2 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1767.6001 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,492.00003 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1884.0001 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15076.801 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3415.2002 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1047.6001 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,770.4 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,530.4 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4630.8003 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,15.6 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3696.0002 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,302.40002 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,50064.004 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12300.001 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8011.2 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3877.2002 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5156.4004 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1725.6001 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3451.2002 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,7908.0005 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7647.6 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3537.6 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,12781.2 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,2073.6 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3754.8 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4269.6 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1737.6001 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,4066.8 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1918.8 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,7190.4004 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3436.8 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,10830.0 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,10467.601 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,598.80005 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5571.6 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.2 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8671.2 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,322.80002 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,53437.203 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13663.2 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,725427.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,710994.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,709258.5 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,289838.7 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,593057.5 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,582736.5 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1281970.1 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10321.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,121526.375 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,116740.45 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,238266.83 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1506322.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,145462.36 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,144376.34 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,52117.0 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,695.6 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2202.8 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1747508E7 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,385.2 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1332.0 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4101.6 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3374.4001 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1782.0001 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5751.6 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8331.601 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,469.2 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1662.0001 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2746.8 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3480.0002 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1926.0001 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5640.0 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7989.6 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,179152.81 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,641233.25 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,429313.22 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3831.6 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,986.4 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1375.2001 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1748114E7 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,814.80005 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,782.4 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3802.8 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3708.0002 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1635.6001 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5769.6 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8023.2 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,660.0 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1021.2 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3666.0002 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3609.6 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1590.0001 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5528.4004 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7754.4004 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,216284.4 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,719955.6 -ABIDE UCLA_1 Site,0051281,1.183E1,2,Male,1.08E2,1.0E2,1.15E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,465970.8 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,188.1 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,926.3 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,4189.2 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2055.6 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,8464.801 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,11803.2 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,9645.601 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2344.8 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,12286.801 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,7485.6 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6123.6 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,2532.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,14364.001 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1761.6001 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3628.8 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1312830 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,504451 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1017869.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1008483.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1008578.75 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,468186.12 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,893889.75 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,887356.75 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1204084.8 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6533.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,178937.9 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,180793.72 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,359731.62 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1284790.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,232112.47 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,236073.64 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3458.9 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5294.3 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2002.6 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,796.3 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1360.3 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18366.8 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4089.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1955.2 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,909.3 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,686.3 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3977.3 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,43.5 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,16226.4 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1575.6001 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3924.0002 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,5342.4004 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2184.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,2942.4001 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,2107.2002 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,7910.4004 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,4404.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,12877.2 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,11710.801 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,3733.2002 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,11116.801 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,23353.201 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,10791.601 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,14299.2 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,11037.601 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,831.60004 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6588.0005 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1749414E7 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,567.60004 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1219.2001 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3512.4001 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56014.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,627933.1 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,883777.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,126.4 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,783.1 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,452.6 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,505.9 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,521.5 -ABIDE UCLA_1 Site,0051204,1.457E1,1,Male,9.8E1,9.0E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,839.7 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,174.7 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1084949.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3762.9 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,52.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,388.9 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3147.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,178.9 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13265.3 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53218.9 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6648.8 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3443.2 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4910.2 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1474.2 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3762.9 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1423.5 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,668.6 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3892.2 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1583.5 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,803.8 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,606.7 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4085.8 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.7 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,363.7 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5119.3 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,202.1 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14305.3 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59151.3 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7691.1 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3647.8 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5656.1 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2021.1 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4203.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,550.5 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,635.5 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,559.3 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,8886.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,770.4 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6388.8003 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1476260 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,595402 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,429092 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6517.2 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,196.8 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,14941.2 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,9158.4 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,880.80005 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,7124.4004 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,11005.2 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,7941.6 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,6790.8003 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3730.8 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,14458.801 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1699.2001 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3340.8 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4736.4004 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2125.2002 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3134.4001 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1434.0 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,6835.2 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3412.8 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,10322.4 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,10807.2 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1953.6001 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,7755.6 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,21489.602 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,7977.6 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,525647 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,419917 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4879.2 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,147.6 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,55393.203 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13455.601 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8472.0 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3608.4001 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4906.8003 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1580.4 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,802.80005 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1653.6001 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19022.4 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3786.0002 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1168.8 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,873.60004 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,619.2 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5300.4004 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.2 -ABIDE UCLA_1 Site,0051201,1.352E1,1,Male,1.04E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4648.8003 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1631.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,187.5 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,997.2 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,550.6 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,771.9 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,647.1 -ABIDE UCLA_1 Site,0051250,1.488E1,2,Male,1.1E2,1.1E2,1.08E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,972.9 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1285580 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,468884 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,359776 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3582.0002 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,258.0 -ABIDE UCLA_1 Site,0051207,1.411E1,1,Female,1.12E2,1.23E2,1.0E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,50011.203 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1345490 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,528984 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,392174 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4263.6 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,160.8 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,57686.402 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13656.001 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8820.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3229.2002 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5010.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1682.4 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,475.2 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1360.8 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17634.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3709.2002 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1339.2001 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,711.60004 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,536.4 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4908.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.400002 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3105.6 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,278.40002 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,56241.6 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13532.4 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8733.601 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3249.6 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4839.6 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1476.0 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12834.3 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59155.2 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7470.5 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4241.5 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5549.9 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1547.8 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4151.2 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1553.7 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,886.8 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3896.8 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,504.3 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1549.8 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,186.6 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,449641.7 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,581865.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4727.2 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,77.1 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11494.7 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54024.2 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7578.4 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2666.2 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4464.3 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1275.2 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1434.7 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1587.9 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16860.6 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2864.2 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,520.6 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,974.6 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,760.4 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3279.8 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13834.801 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,10376.4 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3435.6 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4580.4004 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1717.2001 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1472.4 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2065.2002 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16928.4 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4075.2002 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1154.4 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,436.80002 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4836.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.800001 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,4.8 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,202.8 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,265.2 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,5905.2 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1866.0001 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3627.6 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,2634.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,6675.6 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3048.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2391.6 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,8902.801 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,10815.601 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,10344.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2545.2002 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,10078.801 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8331.601 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6633.6 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3709.2002 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,14011.2 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2443.2002 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4027.2002 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,5564.4004 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2314.8 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3308.4001 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,2080.8 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,7764.0005 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3937.2002 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,11241.601 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,9028.801 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3196.8 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,8314.801 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,18981.602 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,8166.0005 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,15727.2 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,10255.2 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,13564.801 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2150.4001 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4066.8 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4597.2 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2109.6 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,4315.2 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1552.8 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,6716.4004 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4231.2 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,10822.801 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,8930.4 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3315.6 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,8606.4 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,18782.4 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,8628.0 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,16004.4 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,8044.8003 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,867.60004 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,5367.6 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1851.6001 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5691.6 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3444.0002 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1807.2001 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,9412.801 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,11746.801 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,699.5 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,423.7 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,337.2 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,380.6 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,866.0 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,4485.6 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,14996.4 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1646.4 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,5038.8003 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,6026.4004 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,3144.0002 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,3602.4001 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1989.6001 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,7732.8003 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,4377.6 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,12104.4 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,12345.601 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,3483.6 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1356283.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1340076.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1340204.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,665849.3 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1208173.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1195542.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1625233.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12631.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,227528.42 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,228793.27 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,456321.7 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1759168.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,333595.6 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,332253.72 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,69900.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,856936.3 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1191859.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6080.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,500.9 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14104.3 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58771.6 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,10186.801 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,1003.2 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6262.8003 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,4291.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,17280.0 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2918.4001 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,11672.4 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2268.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,8124.0005 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,18283.201 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,10219.2 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,13726.801 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,9427.2 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,1058.4 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6038.4004 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4357.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4318.8003 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2798.4001 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,5692.8003 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,2150.4001 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9586.801 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4899.6 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,14275.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,13584.001 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,4297.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,15907.2 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,24573.602 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1074689.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1075059.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,486388.03 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,952843.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,945774.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1412876.9 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7069.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,204402.25 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,199757.7 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,404159.94 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1467551.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,245723.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,240665.05 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,53796.0 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3435.6 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,13770.001 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1971.6001 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,3591.6 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,5103.6 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1837.2001 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,4052.4001 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1930.8 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,7482.0005 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3830.4001 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,10761.601 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,10528.801 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3687.6 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,7748.4004 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,17979.602 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,7603.2 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,15462.001 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,10450.801 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1143.6001 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6465.6 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2270.4001 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,5583.6 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3715.2002 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1514.4 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,9241.2 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,13842.001 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,9916.801 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2349.6 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3744.0002 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1113.6001 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,926.4 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,531.60004 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5035.2 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,22.800001 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4183.2 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,232.8 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1236177.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,461.4 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,615.2 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,558.6 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,568.6 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,558.5 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,908.6 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3704.4001 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1920.0001 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9798.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3135.6 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,11058.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,9586.801 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,4206.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,9794.4 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,18277.201 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,8413.2 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,17554.8 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,10296.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,814.80005 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,5953.2 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1650.0001 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,4927.2 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4132.8003 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2148.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,8371.2 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,16274.4 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,9445.2 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2108.4001 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,12804.001 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,7868.4004 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,8325.601 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3242.4001 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,14652.001 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1918.8 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,4016.4001 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,3746.4001 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2148.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,4467.6 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,2046.0001 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,8965.2 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,2864.4001 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,10711.2 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,997.2 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,6850.8003 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3386.4001 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,10885.2 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,9016.801 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,2724.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,8146.8003 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,15356.4 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,7623.6 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,14040.001 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,8221.2 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,831.60004 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,5450.4004 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1903.2001 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,4126.8003 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,2310.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1888.8 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1390980 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,560349 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,399258 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,10002.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,271.2 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,55020.004 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12466.801 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8982.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3854.4001 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4922.4004 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1657.2001 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,579.60004 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1796.4 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17863.201 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3430.8 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1087.2001 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,998.4 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,494.40002 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4710.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,10.8 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1331540 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,516000 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,380367 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4518.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,283.2 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,53698.8 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14221.2 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8908.801 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,438457 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4944.0 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,187.20001 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,58393.203 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14071.2 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9097.2 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4201.2 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5799.6 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1698.0001 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,586.80005 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1189.2001 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16995.602 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3786.0002 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1136.4 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,850.80005 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,621.60004 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4725.6 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,21.6 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4244.4004 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,278.40002 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,58284.004 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13443.601 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9178.801 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4284.0 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5706.0 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1624.8 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3997.2002 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1111.2001 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,560.4 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4641.6 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,21.6 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,22.800001 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,238.8 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,297.6 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4502.4004 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2152.8 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3112.8 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,4489.2 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,9052.801 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,4018.8 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1659.7 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,931.6 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,10300.801 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2144.4001 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,7839.6 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,22680.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,8508.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1362.7 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,577.5 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4104.4 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,13.6 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,587.4 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,778.7 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,164.7 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,835.1 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7858.8003 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,480.00003 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1488.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3627.6 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4005.6 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1764.0001 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1144756.0 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1125752.0 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1125874.8 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,554578.5 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1006590.8 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,991569.8 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1371153.0 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15021.0 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,190310.48 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,187545.81 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,377856.28 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1480741.0 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,277897.7 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,276680.8 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56665.0 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,721778.5 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,988837.0 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6785.4 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,357.3 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14468.5 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54696.4 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6926.8 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3899.6 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4686.4 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,11598.0 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2608.8 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,14050.801 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,10827.601 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7832.4004 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1478390 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,577841 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,427435 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5668.8003 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,219.6 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,53892.004 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13122.001 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9350.4 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3661.2002 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4119.5 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4812.5 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1501.6 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3986.6 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1420.2 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,747.3 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1748466E7 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,555.60004 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3957.1 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,17.2 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,589.3 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,996.8 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,12669.601 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,11846.4 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3769.2002 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,10980.0 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,25197.602 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,10038.0 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,17414.4 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,11863.2 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1026.0 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6714.0005 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,3302.4001 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,6945.6 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,3736.8 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1672.8 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,9216.0 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,13959.601 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2414.4001 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,12885.601 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,7868.4004 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,352.80002 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4635.6 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,461921.66 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1701464.0 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,321630.9 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,323295.0 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67848.0 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,845759.94 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1174308.0 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3771.8 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,154.9 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16008.9 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,65668.8 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4245.6 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2295.6 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,3777.6 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1821.6001 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,7395.6 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3927.6 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,13105.2 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,11014.801 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,2232.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,10435.2 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,18746.4 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,7195.2 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,16544.4 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,10957.2 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1093.2001 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,5821.2 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2274.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,6921.6 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4448.4004 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1676.4 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,9439.2 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,14143.2 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,10238.4 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2955.6 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,12798.001 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,6793.2 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,6790.8003 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3072.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,13372.801 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1891.2001 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3552.0002 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4030.8 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2050.8 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,4632.0 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,2024.4 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,6874.8003 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3613.2002 -ABIDE UCLA_1 Site,0051212,1.566E1,1,Male,1.0E2,9.7E1,1.0E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,10744.801 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,481.6 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,584.4 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,461.6 -ABIDE UCLA_1 Site,0051239,1.367E1,1,Male,8.6E1,8.3E1,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1051.9 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1878.7 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,806.2 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,910.0 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4072.5 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,40.3 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,493.0 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3746.6 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,301.8 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14016.6 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58983.9 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8190.1 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4551.0 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6454.7 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1891.6 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4072.0 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1654.7 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,830.3 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4027.2 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,28.3 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,562.4 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4383.1 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1823.1 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,628.6 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4062.2 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,22.6 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,334.2 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,613.1 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4027.7 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,16.3 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,434.4 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4854.5 -ABIDE UCLA_1 Site,0051208,1.698E1,1,Male,1.13E2,1.04E2,1.16E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,196.8 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1430110 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,547804 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,414241 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6738.0005 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,261.6 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,48771.6 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13591.2 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8749.2 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3886.8 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5242.8003 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1710.0001 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,747.60004 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1906.8 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17358.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3584.4001 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,791071.9 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1069473.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3788.4 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,283.4 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12705.3 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63651.8 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7605.3 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3527.9 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5903.9 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1932.1 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,785.7 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1618.3 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20069.9 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4264.1 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1722.2 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,900.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,712.2 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4043.7 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,34.2 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,150.8 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,875.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,460.4 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,335.1 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,367.3 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,846.6 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1103880 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,436520 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,315861 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5632.8003 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,175.20001 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,40788.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Left-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11284.801 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Left-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6874.8003 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3368.4001 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4292.4004 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1518.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,571.2 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,645214.06 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,943869.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3359.8 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,186.3 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13728.3 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,51983.2 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6658.8 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3465.6 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4648.4 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1688.1 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,699.3 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2049.7 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21881.4 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3398.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1573.6 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,653.2 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,772.9 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3785.4 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,43.8 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,463.2 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1095.7 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,200.6 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,756.5 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,414.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,574.4 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,440.3 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54552.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7731.7 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3425.1 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5406.7 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1883.2 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4399.8 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1845.6 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,574.1 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4054.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.7 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,762.7 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1275.2 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4533.3 -ABIDE UCLA_1 Site,0051274,1.096E1,2,Male,1.25E2,1.29E2,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,56.9 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,474.5 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3210.9 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,377.9 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12976.7 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,66291.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7484.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2805.6 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4033.2002 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1658.4 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4279.2 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8746.801 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,291.6 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1444.8 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3370.8 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3567.6 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1668.0001 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5196.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7945.2 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,189805.2 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,739122.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,561834.0 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4478.4004 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1642.8 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,487.2 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1244.4 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17523.602 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3501.6 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1190.4 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,625.2 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,477.6 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,4725.6 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,16.800001 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3942.0002 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,274.80002 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,53881.203 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12871.2 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9129.601 -ABIDE UCLA_1 Site,0051279,1.382E1,2,Female,1.06E2,1.09E2,9.9E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3526.8 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1749834E7 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,310.80002 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1328.4 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,900.00006 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1207.2001 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,448.80002 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5041.2 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,16.800001 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6838.8003 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,477.6 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,50192.402 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13615.2 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8491.2 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,16.800001 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,247.20001 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,345.6 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4566.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1950.0001 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2694.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3729.6 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,7219.2 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,4327.2 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1708.8 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1568880 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,643948 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1243.2001 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3532.8 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3536.4001 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1660.8 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5287.2 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8158.8003 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,206582.4 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,727884.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,513994.8 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1224620.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1225138.5 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,600452.9 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1080920.5 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1072672.5 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1469247.8 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8248.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,203568.66 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,205524.95 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,409093.62 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1604409.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,299440.84 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,301012.03 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60591.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,111.6 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,821.2 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,518.4 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,388.7 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,437.2 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,680.6 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Left-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3421.2002 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Left-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5518.8003 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Left-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1837.2001 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,3rd-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,739.2 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,4th-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2288.4001 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Brain-Stem Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18672.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Left-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3330.0002 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Left-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,994.80005 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,CSF Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,876.00006 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Left-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,390.00003 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Left-VentralDC Volume (mm^3),,Left,5317.2 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Left-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,24.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Right-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4172.4004 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Right-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,463.2 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Right-Cerebellum-Exterior Volume (mm^3),,Right,53150.402 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Right-Cerebellum-White-Matter Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13492.801 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Right-Thalamus-Proper Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8775.601 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3643.2002 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5572.8003 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1746.0001 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,218.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,734.8 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,445.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,417.5 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,402.5 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,712.2 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1524.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3679.2002 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1239.6001 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,543.60004 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4611.6 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.400001 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,679880.3 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1216847.8 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1207698.8 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1673570.9 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,410.0 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6799.4 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,290.5 -ABIDE UCLA_1 Site,0051273,1.268E1,2,Male,1.04E2,9.8E1,1.09E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12046.9 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,7208.4004 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,2736.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,14276.4 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,2134.8 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4147.2 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4353.6 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,2378.4001 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3572.4001 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1090.8 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,364.80002 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,5074.8003 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,22.800001 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,37.2 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,292.80002 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,270.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4647.6 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1886.4 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,2997.6 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3126.0002 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,6265.2 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3855.6 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1992.0001 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,9438.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,13503.601 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,9429.601 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2316.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,11412.0 -ABIDE UCLA_1 Site,0051203,1.337E1,1,Male,1.03E2,1.16E2,9.1E1,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8192.4 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1348311.0 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1338273.0 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1338595.5 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,644925.94 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1184413.5 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1177180.5 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1611060.6 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7233.0 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,230865.55 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,231056.1 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,1952.4 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,10596.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,7000.8003 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,6684.0005 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3354.0002 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,11276.4 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1551.6001 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3897.6 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4273.2 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1882.8 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,4035.6 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1777.2001 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,8076.0005 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,3193.2002 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,10028.4 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6780.0005 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,2409.6 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,6799.2 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4701.6 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,1944.0001 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,8050.8003 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,13576.801 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,11510.4 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2031.6001 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,13545.601 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,8511.601 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7089.6 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3513.6 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,13536.001 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1785.6001 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3874.8 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,7483.2 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,3355.2002 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,13341.601 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1974.0001 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4070.4001 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4405.2 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1712.4 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,5960.4004 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,2048.4001 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,7989.6 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,4084.8 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,14184.001 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,12148.801 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,4236.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,13615.2 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,26050.8 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,12060.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,18794.4 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4836.0 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7807.2 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,208888.81 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,557193.6 -ABIDE UCLA_1 Site,0051218,1.687E1,1,Male,1.11E2,1.03E2,1.18E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,455012.4 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,1022.4 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,6518.4004 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,2810.4001 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,9894.0 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,8701.2 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,1526.4 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,6661.2 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,16184.4 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,7482.0005 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,11863.2 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,8860.801 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,514.80005 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6177.6 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,7189.2 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,13105.2 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,9511.2 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,2156.4001 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,10441.2 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,6742.8003 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,5385.6 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,3231.6 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,12621.601 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,1694.4 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3427.2002 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,3136.8 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1974.0001 -ABIDE UCLA_1 Site,0051251,1.236E1,2,Male,9.6E1,1.07E2,8.6E1,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,2979.6 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Optic-Chiasm Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,14.400001 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Left basal forebrain Volume (mm^3),,Left,286.80002 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Right basal forebrain Volume (mm^3),,Right,339.6 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules I - V Volume (mm^3),,,4908.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,1922.4 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Right-Caudate Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4117.2 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Right-Putamen Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5230.8003 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Right-Pallidum Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1585.2001 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Right-Hippocampus Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3661.2002 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Right-Amygdala Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,992.4 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Right-Accumbens-area Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,439.2 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Right-VentralDC Volume (mm^3),,Right,4926.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,Right-vessel Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,3388.8 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,1932.0001 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,4173.6 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,2002.8 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,12002.4 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,1404.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-insula Volume (mm^3),,Left,6632.4004 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-caudalanteriorcingulate Volume (mm^3),,Right,1965.6001 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-caudalmiddlefrontal Volume (mm^3),,Right,6654.0005 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-cuneus Volume (mm^3),,Right,4348.8003 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-entorhinal Volume (mm^3),,Right,2362.8 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-fusiform Volume (mm^3),,Right,9626.4 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-inferiorparietal Volume (mm^3),,Right,14538.001 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-inferiortemporal Volume (mm^3),,Right,12619.2 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-isthmuscingulate Volume (mm^3),,Right,3280.8 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-lateraloccipital Volume (mm^3),,Right,12847.2 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-lateralorbitofrontal Volume (mm^3),,Right,9766.801 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-lingual Volume (mm^3),,Right,7269.6 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-medialorbitofrontal Volume (mm^3),,Right,4144.8003 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-middletemporal Volume (mm^3),,Right,16573.201 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-parahippocampal Volume (mm^3),,Right,2218.8 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-paracentral Volume (mm^3),,Right,3757.2002 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-parsopercularis Volume (mm^3),,Right,4112.4004 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-parsorbitalis Volume (mm^3),,Right,2439.6 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-parstriangularis Volume (mm^3),,Right,5157.6 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-pericalcarine Volume (mm^3),,Right,2487.6 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-postcentral Volume (mm^3),,Right,8205.601 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-posteriorcingulate Volume (mm^3),,Right,4176.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-precentral Volume (mm^3),,Right,12247.2 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-precuneus Volume (mm^3),,Right,11598.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-rostralanteriorcingulate Volume (mm^3),,Right,2754.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,11698.801 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,28032.002 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,11578.801 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,16640.4 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,10238.4 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,861.60004 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,7022.4004 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VI - VII Volume (mm^3),,,2085.6 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3684.0002 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3679.2002 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,6686.4004 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,4122.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,2142.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,9787.2 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,11155.2 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,11083.2 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,3000.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,11257.2 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,9150.0 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,476.40002 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1438.8 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3918.0002 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3584.4001 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1766.4 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5053.2 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7802.4004 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,219775.2 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,507648.03 -ABIDE UCLA_1 Site,0051264,1.346E1,2,Female,1.07E2,1.02E2,1.09E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,452808.03 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1363645.0 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1351856.0 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1352622.8 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,457989.38 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1722574.0 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,341823.06 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,338057.28 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65625.0 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,866417.3 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1202600.0 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4061.9 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,522.4 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14664.1 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60195.4 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8177.4 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4494.9 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6602.2 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2029.9 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,871.1 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1155.9 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18931.5 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3990.5 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,Cerebellar vermal lobules VIII - X Volume (mm^3),,,3056.4001 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-caudalanteriorcingulate Volume (mm^3),,Left,3729.6 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-caudalmiddlefrontal Volume (mm^3),,Left,7858.8003 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-cuneus Volume (mm^3),,Left,3489.6 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-entorhinal Volume (mm^3),,Right,1593.6001 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,8557.2 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,14662.801 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,10628.4 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2560.8 -ABIDE UCLA_1 Site,0051262,1.156E1,2,Male,9.7E1,9.6E1,9.7E1,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,11905.2 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1135065.0 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1113096.0 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1112811.1 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,513582.66 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,990180.1 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,973215.1 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1440350.1 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,16965.0 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,197164.66 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,197530.83 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,394695.47 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1576686.0 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,260022.97 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,253559.69 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61173.0 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,692753.6 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4869.6 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7927.2 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,174020.4 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,538081.25 -ABIDE UCLA_1 Site,0051272,1.341E1,2,Male,8.4E1,7.7E1,9.4E1,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,423114.03 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-rostralmiddlefrontal Volume (mm^3),,Right,11322.0 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-superiorfrontal Volume (mm^3),,Right,25358.4 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-superiorparietal Volume (mm^3),,Right,11080.801 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-superiortemporal Volume (mm^3),,Right,16586.4 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-supramarginal Volume (mm^3),,Right,11685.601 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-transversetemporal Volume (mm^3),,Right,843.60004 -ABIDE UCLA_1 Site,0051280,9.5E0,2,Male,1.09E2,9.6E1,1.23E2,http://stnava.github.io/ANTs/,ctx-rh-insula Volume (mm^3),,Right,6597.6 -ABIDE UCLA_1 Site,0051259,1.107E1,2,Male,1.17E2,1.06E2,1.25E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,742.3 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1099475.0 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1100216.4 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,501582.78 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,980488.3 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,969001.3 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1438642.4 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11487.0 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,205724.36 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,204875.2 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,410599.56 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1465135.0 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,251753.33 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,249829.44 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,54027.0 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,664315.75 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,965368.0 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5333.5 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,253.2 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13152.4 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53172.7 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7141.2 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3329.5 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4931.0 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1836.2 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1050.8 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1972.4 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18987.5 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3299.2 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1372.9 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1071.3 -ABIDE UCLA_1 Site,0051230,1.753E1,1,Female,1.27E2,1.16E2,1.32E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,575.4 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1299351.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1284906.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1285528.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,616488.25 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1149193.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1138146.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1506462.4 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11047.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,230151.22 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,226534.56 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,456685.78 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1666331.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,308605.84 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,307882.38 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61935.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,801402.25 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1134337.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6033.4 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,345.6 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14160.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61340.1 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7880.6 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4064.9 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5636.4 -ABIDE UCLA_1 Site,0051235,1.067E1,1,Male,1.32E2,1.22E2,1.3E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,432.5 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,203.6 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,917.6 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,518.6 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,525.3 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,506.6 -ABIDE UCLA_1 Site,0051236,1.242E1,1,Male,8.9E1,9.4E1,8.5E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,839.6 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,595.2 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1237.2001 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3640.8 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4137.6 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1746445E7 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,579.60004 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1356.0 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3733.2002 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3942.0002 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1778.4 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5578.8003 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8211.601 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,393.6 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1292.4 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3825.6 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3891.6 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1801.2001 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5606.4004 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8044.8003 -ABIDE UCLA_1 Site,0051255,1.48E1,2,Male,8.8E1,9.3E1,8.8E1,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,253827.61 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6015.1 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1887.9 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3632.7 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1592.5 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,658.7 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3812.2 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3543.6 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3843.6 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1749.6001 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5318.4004 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8776.801 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,480.00003 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1819.2001 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3302.4001 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4170.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1837.2001 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5698.8003 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8566.801 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5094.1 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1625.8 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4123.2 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1494.2 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,543.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3456.6 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,3.6 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,407.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,4956.6 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1745588E7 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,480.00003 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1305.6001 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-fusiform Volume (mm^3),,Left,8198.4 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-inferiorparietal Volume (mm^3),,Left,11054.4 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-inferiortemporal Volume (mm^3),,Left,9536.4 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-isthmuscingulate Volume (mm^3),,Left,2394.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-lateraloccipital Volume (mm^3),,Left,11508.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-lateralorbitofrontal Volume (mm^3),,Left,8503.2 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-lingual Volume (mm^3),,Left,6546.0005 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-medialorbitofrontal Volume (mm^3),,Left,2984.4001 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-middletemporal Volume (mm^3),,Left,11847.601 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-parahippocampal Volume (mm^3),,Left,1808.4 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-paracentral Volume (mm^3),,Left,4711.2 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-parsopercularis Volume (mm^3),,Left,4454.4004 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-parsorbitalis Volume (mm^3),,Left,1302.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-parstriangularis Volume (mm^3),,Left,4411.2 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-pericalcarine Volume (mm^3),,Left,1718.4 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-postcentral Volume (mm^3),,Left,9255.601 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-posteriorcingulate Volume (mm^3),,Left,3405.6 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-precentral Volume (mm^3),,Left,12061.2 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-precuneus Volume (mm^3),,Left,10671.601 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-rostralanteriorcingulate Volume (mm^3),,Left,3566.4001 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-rostralmiddlefrontal Volume (mm^3),,Left,10476.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-superiorfrontal Volume (mm^3),,Left,22189.201 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-superiorparietal Volume (mm^3),,Left,12913.2 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-superiortemporal Volume (mm^3),,Left,15354.001 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-supramarginal Volume (mm^3),,Left,10736.4 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,http://stnava.github.io/ANTs/,ctx-lh-transversetemporal Volume (mm^3),,Left,948.00006 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,8.8 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,247.6 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5056.3 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,267.7 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13196.2 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10561.4 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53989.4 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7198.6 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,223395.61 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,689006.44 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,498235.22 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4325.5 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1963.2 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,572.8 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3862.5 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,33.8 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,485.6 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1597.7 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,178.3 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,654.4 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,457.3 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,676.4 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,528.9 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,637.7 -ABIDE UCLA_1 Site,0051213,9.11E0,1,Male,9.8E1,9.5E1,1.04E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3435.2 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13470.6 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53393.0 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7309.5 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4158.9 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5762.3 -ABIDE UCLA_1 Site,0051260,1.366E1,2,Male,9.5E1,7.6E1,1.17E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1873.7 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1117.6 -ABIDE UCLA_1 Site,0051271,1.209E1,2,Male,1.13E2,1.02E2,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,24.8 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,550.9 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2258.1 -ABIDE UCLA_1 Site,0051226,9.26E0,1,Female,1.02E2,1.04E2,9.9E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,168.4 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,856.2 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,555.3 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,576.0 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,661.2 -ABIDE UCLA_1 Site,0051202,1.156E1,1,Male,9.8E1,8.6E1,1.1E2,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,904.2 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1294.3 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,200.1 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,754.6 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,519.0 -ABIDE UCLA_1 Site,0051276,1.385E1,2,Male,1.05E2,1.09E2,9.8E1,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,714.4 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,969597.0 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7276.8 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,628.4 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13475.0 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56548.1 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7574.2 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4071.9 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5582.1 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1720.0 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1435.0 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2654.2 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16839.6 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4263.1 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1609.9 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1046.6 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,845.9 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3999.6 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,23.3 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,431.4 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7943.4 -ABIDE UCLA_1 Site,0051209,9.99E0,1,Male,1.28E2,1.31E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,624.9 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,760.6 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,13244.0 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,647.1 -ABIDE UCLA_1 Site,0051229,1.459E1,1,Male,9.5E1,7.7E1,1.15E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://purl.org/nidash/fsl#,Background (mm^3),,,1.174511E7 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,601.2 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1204.8 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3609.6 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4021.2002 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1738.8 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5816.4004 -ABIDE UCLA_1 Site,0051228,8.36E0,1,Female,9.5E1,9.8E1,9.1E1,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8851.2 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,BVOL (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1558270 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,GVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,572794 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,WVol (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,470141 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Left-Lateral-Ventricle Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,19226.4 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Left-Inf-Lat-Vent Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,296.40002 -ABIDE UCLA_1 Site,0051238,1.085E1,1,Male,7.3E1,8.2E1,6.7E1,http://stnava.github.io/ANTs/,Left-Cerebellum-Exterior Volume (mm^3),,Left,51610.8 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1247.6 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,223.1 -ABIDE UCLA_1 Site,0051278,9.21E0,2,Male,1.09E2,9.7E1,1.21E2,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,924.5 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1181277.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1163405.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1163496.2 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,533292.06 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1048038.3 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1034182.3 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1494090.8 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13856.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1509.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,602.1 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4127.9 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,25.6 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,657.6 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1031.6 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,218766.83 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,218611.38 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,437378.22 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1577933.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,265336.44 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,267955.62 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61422.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,699766.06 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1031916.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6062.6 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,465.7 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13738.4 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52019.8 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7493.3 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4143.1 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6111.7 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2093.1 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,993.6 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2012.7 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19771.5 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3814.1 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1307.4 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1170.6 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,760.7 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4323.4 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,22.6 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,444.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6281.1 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,596.7 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13462.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,52151.3 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7534.0 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4457.2 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5955.9 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1919.2 -ABIDE UCLA_1 Site,0051267,1.125E1,2,Female,1.18E2,1.12E2,1.19E2,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3771.1 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,726.7 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1878.7 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1108944E7 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1185827.0 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1173815.0 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1173745.9 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17802.4 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,860.6 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,636.3 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,522.3 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,476.2 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,773.6 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,728.2 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1463012.9 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,207364.73 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,283393.16 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,247.38034 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,978.4 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,774.06104 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1445.8 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4446.1963 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4342.0 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55745.4 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14259.8 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3485.9348 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4021.1 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,394.4 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4352.1 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1835.4026 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1964.2 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5478.2773 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5714.8 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7260.48 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7239.5 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3937.6 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,415.6 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,18.6 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1544179.0 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,129.5 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,205659.62 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,276464.4 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,452.20062 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,724.2 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,960.26135 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1626.3 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4693.5767 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4331.5 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55588.6 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13892.8 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3342.2947 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3996.0 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,409.7 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3384.2 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1736.9824 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1712.9 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5558.0776 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5713.4 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7648.8403 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7102.2 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4336.0 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,545.2 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61200.0 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1037167.94 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1046097.94 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1034028.0 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,413024.38 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,559857.56 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,732977.56 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8930.0 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1449.3 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,159854.25 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,705562.0 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10001,11.17,ADHD-Inattentive,Female,99,91,106,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,472895.44 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,663.6 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,604.6 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1113982E7 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1080844.0 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1068843.0 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1068794.4 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15900.8 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,934.5 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,516.1 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,564.8 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,529.0 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,755.3 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,848.1 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1319088.4 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,198674.83 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,246801.75 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,332.50046 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,654.9 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,618.45087 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1302.2 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4450.186 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4125.2 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,51793.0 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12601.7 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3180.0344 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3406.7 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,329.6 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4612.8 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1506.8921 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1896.4 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4531.3164 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4778.9 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7475.9404 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6865.5 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3476.8 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,369.1 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,12.0 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1413593.0 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,137.0 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,198583.7 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,244075.12 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,393.68054 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,650.4 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,791.3511 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1643.9 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2774.3838 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4123.5 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,49836.3 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12326.3 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3015.1143 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3198.0 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,444.5 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4390.4 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1715.7024 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1676.2 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4635.056 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4720.3 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7461.31 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6369.6 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3477.5 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,425.9 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.2 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,54214.0 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,945537.4 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,955630.4 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,942270.0 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,397258.53 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,490876.88 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,647046.9 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10093.0 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1286.8 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,169025.94 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,610151.6 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10002,13.24,ADHD-Inattentive,Female,75,89,65,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,432523.25 +,10003,9.29,Typically Developing Children,Female,100,93,107,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1124679E7 +,10003,9.29,Typically Developing Children,Female,100,93,107,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,377.72052 +,10003,9.29,Typically Developing Children,Female,100,93,107,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,381.7105 +,10003,9.29,Typically Developing Children,Female,100,93,107,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2533.6536 +,10003,9.29,Typically Developing Children,Female,100,93,107,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2628.0835 +,10003,9.29,Typically Developing Children,Female,100,93,107,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1256.8517 +,10003,9.29,Typically Developing Children,Female,100,93,107,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,3402.1448 +,10003,9.29,Typically Developing Children,Female,100,93,107,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,5741.6177 +,10003,9.29,Typically Developing Children,Female,100,93,107,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,345.80048 +,10003,9.29,Typically Developing Children,Female,100,93,107,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,881.7912 +,10003,9.29,Typically Developing Children,Female,100,93,107,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2928.664 +,10003,9.29,Typically Developing Children,Female,100,93,107,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2399.3232 +,10003,9.29,Typically Developing Children,Female,100,93,107,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,642.39087 +,10003,9.29,Typically Developing Children,Female,100,93,107,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,3874.2954 +,10003,9.29,Typically Developing Children,Female,100,93,107,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,4790.6665 +,10003,9.29,Typically Developing Children,Female,100,93,107,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,203514.22 +,10003,9.29,Typically Developing Children,Female,100,93,107,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,537618.7 +,10003,9.29,Typically Developing Children,Female,100,93,107,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,390194.6 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,695.7 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2225.7 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1114601E7 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,925943.0 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,911125.0 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,911179.25 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15893.0 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,964.0 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,505.7 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,546.7 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,612.8 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,824.1 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,894.9 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1204041.0 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,158963.03 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,210946.67 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,288.60873 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,654.5 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,887.10614 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1322.2 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3400.7952 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3636.0 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,49370.7 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12158.4 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3243.856 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3389.1 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,229.6 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4964.0 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1713.0325 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1677.8 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4734.7793 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4816.8 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6764.3506 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,5869.3 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3406.9 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,471.3 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,15.4 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1279934.0 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,129.1 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,159516.89 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,208537.69 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,159.5993 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,536.4 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,994.8357 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1274.4 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3644.184 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3507.0 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,49526.5 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11961.1 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3407.445 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3305.1 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,352.3 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5269.2 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1699.7325 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1525.8 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4613.75 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4630.3 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6647.311 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,5853.4 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3498.0 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,536.3 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,6.6 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,50688.0 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,790329.25 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,801532.25 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,788484.0 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,318479.9 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,419484.34 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,569750.4 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11203.0 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,812.5 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,190860.81 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,554223.2 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10004,13.75,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,388625.62 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,797.0 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1276.7 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1105632E7 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1129540.0 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1117675.0 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1117438.5 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19097.3 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,954.0 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,470.2 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,616.8 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,584.7 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,865.0 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,840.7 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1450707.0 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,200438.28 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,253073.14 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,500.0807 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,821.0 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1123.8516 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1624.7 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4083.1057 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4132.3 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54057.7 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15772.0 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3174.7144 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3783.5 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,470.8 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4832.0 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1771.5625 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2032.5 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6060.8184 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5799.4 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8582.502 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8011.7 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4757.4 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,529.8 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,26.7 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1619846.0 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,183.3 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,205477.31 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,257220.75 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,368.41052 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,592.1 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,897.7512 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1794.6 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4185.5156 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4336.6 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,51936.6 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15381.0 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4323.836 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3858.0 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,263.1 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3225.7 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2130.6628 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2245.8 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5363.8975 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5760.9 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8664.962 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8449.8 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4426.6 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,621.5 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,17.5 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64608.0 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,983089.5 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,992392.5 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,980882.0 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,405915.6 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,510293.9 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,680922.9 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9303.0 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1741.0 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,194065.89 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,703555.0 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10005,11.92,ADHD-Hyperactive/Impulsive,Male,108,118,98,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,485414.75 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1326.0 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1983.8 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10006,11.18,Typically Developing Children,Female,101,87,117,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1114174E7 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,973800.0 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,945828.0 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,945917.44 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17066.3 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,795.4 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,386.0 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,370.1 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,543.1 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,816.9 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1068.5 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1208049.8 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,166255.83 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,219196.6 +,10006,11.18,Typically Developing Children,Female,101,87,117,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,468.16064 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,473.1 +,10006,11.18,Typically Developing Children,Female,101,87,117,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,597.17084 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1117.6 +,10006,11.18,Typically Developing Children,Female,101,87,117,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3257.1746 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3212.2 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,48627.3 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11932.9 +,10006,11.18,Typically Developing Children,Female,101,87,117,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3190.6743 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2994.8 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,480.4 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,11763.1 +,10006,11.18,Typically Developing Children,Female,101,87,117,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1726.3424 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1773.2 +,10006,11.18,Typically Developing Children,Female,101,87,117,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4897.067 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4578.7 +,10006,11.18,Typically Developing Children,Female,101,87,117,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6880.0996 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,5861.4 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3735.9 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,644.2 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,40.2 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1303815.0 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,130.3 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,167853.02 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,220670.97 +,10006,11.18,Typically Developing Children,Female,101,87,117,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,275.31036 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,415.2 +,10006,11.18,Typically Developing Children,Female,101,87,117,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1081.2915 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1385.6 +,10006,11.18,Typically Developing Children,Female,101,87,117,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3553.765 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3411.9 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,50087.1 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11962.7 +,10006,11.18,Typically Developing Children,Female,101,87,117,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3529.825 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3432.9 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,456.8 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,10347.0 +,10006,11.18,Typically Developing Children,Female,101,87,117,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1811.4625 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1595.0 +,10006,11.18,Typically Developing Children,Female,101,87,117,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4454.1763 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4528.8 +,10006,11.18,Typically Developing Children,Female,101,87,117,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6967.8794 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,5919.6 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3728.4 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,567.4 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,8.3 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,49811.0 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,826264.44 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,850007.44 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,823592.0 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,334108.84 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,439867.56 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,588718.56 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,23743.0 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,937.1 +,10006,11.18,Typically Developing Children,Female,101,87,117,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,187684.53 +,10006,11.18,Typically Developing Children,Female,101,87,117,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,551608.94 +,10006,11.18,Typically Developing Children,Female,101,87,117,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10006,11.18,Typically Developing Children,Female,101,87,117,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,388216.9 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,717.6 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1104.7 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1115517E7 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1180072.0 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1168464.0 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1168473.8 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15711.9 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,763.9 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,578.0 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,662.9 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,527.9 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,678.0 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,523.3 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1399465.4 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,193174.23 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,291533.62 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,534.66077 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,556.7 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,512.0507 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1239.8 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3793.1653 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3725.3 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57610.4 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13417.1 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3086.9343 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3552.0 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,533.1 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4515.1 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1456.352 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1915.2 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5261.4873 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5136.4 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6442.529 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6786.9 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3736.0 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,405.2 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,69.6 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1532056.0 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,118.2 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,192991.4 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,290235.53 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,409.64056 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,535.6 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,356.4405 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1536.1 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4029.9055 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3937.1 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57995.5 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14876.9 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2839.554 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3635.3 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,329.9 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3842.6 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1520.1921 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1672.6 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5206.957 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5379.6 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,5897.228 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6581.3 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3939.3 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,464.2 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,83.8 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55818.0 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1028211.8 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1037678.8 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1023783.0 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,386165.66 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,581769.2 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,754393.2 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9467.0 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,544.0 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,148692.88 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,706544.9 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10007,11.41,ADHD-Inattentive,Female,95,93,95,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,435449.25 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,720.1 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,938.3 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10008,14.48,Typically Developing Children,Female,111,106,113,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1105579E7 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1146311.0 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1120618.0 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1120861.8 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19234.7 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,930.9 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,506.1 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,515.8 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,576.6 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,941.6 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,863.0 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1397706.5 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,201390.22 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,268438.94 +,10008,14.48,Typically Developing Children,Female,111,106,113,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,738.151 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,637.7 +,10008,14.48,Typically Developing Children,Female,111,106,113,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,629.0909 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1545.3 +,10008,14.48,Typically Developing Children,Female,111,106,113,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3845.0354 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3697.0 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53534.2 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12519.1 +,10008,14.48,Typically Developing Children,Female,111,106,113,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4101.7256 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4033.2 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,454.5 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,12300.0 +,10008,14.48,Typically Developing Children,Female,111,106,113,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1904.5626 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1927.7 +,10008,14.48,Typically Developing Children,Female,111,106,113,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5949.098 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5594.2 +,10008,14.48,Typically Developing Children,Female,111,106,113,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8432.212 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7802.8 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4086.0 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,657.2 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,10.5 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1539736.0 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,150.4 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,199334.97 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,263258.6 +,10008,14.48,Typically Developing Children,Female,111,106,113,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,563.9208 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,657.8 +,10008,14.48,Typically Developing Children,Female,111,106,113,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,674.3109 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1622.4 +,10008,14.48,Typically Developing Children,Female,111,106,113,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3851.6853 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3702.4 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,50173.2 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12116.8 +,10008,14.48,Typically Developing Children,Female,111,106,113,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4057.8357 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3949.4 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,409.4 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,9163.1 +,10008,14.48,Typically Developing Children,Female,111,106,113,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2021.6028 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1852.3 +,10008,14.48,Typically Developing Children,Female,111,106,113,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5982.348 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5565.4 +,10008,14.48,Typically Developing Children,Female,111,106,113,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8533.292 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7635.4 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4094.1 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,609.4 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,31.0 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60183.0 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,995621.75 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1018970.75 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,992266.0 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,400725.2 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,531697.56 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,696282.56 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,23349.0 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,868.5 +,10008,14.48,Typically Developing Children,Female,111,106,113,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,177541.94 +,10008,14.48,Typically Developing Children,Female,111,106,113,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,641518.4 +,10008,14.48,Typically Developing Children,Female,111,106,113,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10008,14.48,Typically Developing Children,Female,111,106,113,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,439198.53 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,660.2 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1799.4 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1000804,7.29,Typically Developing Children,Male,109,103,112,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1103851E7 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1356819.0 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1344428.0 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1344141.6 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18801.3 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,998.6 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,711.7 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,718.5 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,628.8 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,935.9 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,772.8 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1572170.5 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,240214.25 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,330560.47 +,1000804,7.29,Typically Developing Children,Male,109,103,112,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,684.9509 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,732.1 +,1000804,7.29,Typically Developing Children,Male,109,103,112,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,877.8012 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1733.4 +,1000804,7.29,Typically Developing Children,Male,109,103,112,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4825.2466 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4163.7 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58911.2 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12527.4 +,1000804,7.29,Typically Developing Children,Male,109,103,112,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3606.9648 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4293.7 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,199.6 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3948.4 +,1000804,7.29,Typically Developing Children,Male,109,103,112,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1750.2825 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2118.5 +,1000804,7.29,Typically Developing Children,Male,109,103,112,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5756.248 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5789.9 +,1000804,7.29,Typically Developing Children,Male,109,103,112,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9191.643 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8880.7 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4331.6 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,399.0 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,32.5 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1744771.0 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,163.2 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,238255.53 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,331393.38 +,1000804,7.29,Typically Developing Children,Male,109,103,112,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,535.9907 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,735.4 +,1000804,7.29,Typically Developing Children,Male,109,103,112,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,853.8612 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1772.8 +,1000804,7.29,Typically Developing Children,Male,109,103,112,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4990.167 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4684.8 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54555.9 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11793.4 +,1000804,7.29,Typically Developing Children,Male,109,103,112,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3202.6445 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4363.2 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,192.6 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4528.1 +,1000804,7.29,Typically Developing Children,Male,109,103,112,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1771.5625 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1981.2 +,1000804,7.29,Typically Developing Children,Male,109,103,112,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6143.2783 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5947.1 +,1000804,7.29,Typically Developing Children,Male,109,103,112,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8821.902 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8327.6 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4287.8 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,533.2 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,17.6 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66063.0 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1209720.6 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1219076.6 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1206662.0 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,478469.78 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,661953.8 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,842280.8 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9356.0 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1799.2 +,1000804,7.29,Typically Developing Children,Male,109,103,112,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,151027.03 +,1000804,7.29,Typically Developing Children,Male,109,103,112,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,829693.7 +,1000804,7.29,Typically Developing Children,Male,109,103,112,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1000804,7.29,Typically Developing Children,Male,109,103,112,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,542527.7 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,789.9 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1408.2 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10009,12.1,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1108016E7 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1283626.0 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1272839.0 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1272931.5 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18627.5 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,876.8 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,681.4 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,741.3 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,398.6 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,825.7 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,851.0 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1239884.9 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,223057.9 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,305266.62 +,10009,12.1,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,655.6909 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,851.3 +,10009,12.1,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,888.4412 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1800.1 +,10009,12.1,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3914.1953 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3719.6 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,50641.3 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15290.1 +,10009,12.1,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3967.3955 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3910.7 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,318.7 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3843.9 +,10009,12.1,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1771.5625 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2019.0 +,10009,12.1,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5112.527 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5312.9 +,10009,12.1,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8085.081 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8353.1 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3850.0 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,451.4 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,10.7 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1684965.0 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,210.3 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,226212.5 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,314541.53 +,10009,12.1,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,492.10068 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,799.5 +,10009,12.1,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,668.9909 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1894.4 +,10009,12.1,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4173.546 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4151.7 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57631.7 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,16158.8 +,10009,12.1,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4092.4155 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3855.7 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,449.2 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3038.8 +,10009,12.1,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1762.2524 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1659.3 +,10009,12.1,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5393.157 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5462.4 +,10009,12.1,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7870.9507 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8273.1 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4050.2 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,480.0 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,1.0 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61984.0 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1135623.5 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1143653.5 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1130760.0 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,449270.4 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,619808.1 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,792410.1 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8030.0 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1014.7 +,10009,12.1,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,159876.86 +,10009,12.1,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,714989.06 +,10009,12.1,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10009,12.1,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,485027.72 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1012.4 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1749.2 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10010,11.32,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1106973E7 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1399480.0 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1387566.0 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1386354.9 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18944.0 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,771.4 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,934.8 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,791.8 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,620.3 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,904.4 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,824.5 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1620090.0 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,245509.3 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,340106.8 +,10010,11.32,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,505.4007 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,756.5 +,10010,11.32,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,820.61115 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1858.2 +,10010,11.32,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4293.246 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3838.5 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61157.3 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16471.3 +,10010,11.32,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4373.046 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4680.1 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,311.1 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3629.5 +,10010,11.32,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1931.1626 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2115.3 +,10010,11.32,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6135.2983 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6514.6 +,10010,11.32,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6551.589 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8408.7 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4402.3 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,598.7 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,34.8 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1827720.0 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,152.3 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,243819.02 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,334541.72 +,10010,11.32,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,385.70053 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,725.5 +,10010,11.32,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1146.4615 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2283.8 +,10010,11.32,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4452.846 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4093.4 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61933.9 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14563.8 +,10010,11.32,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3520.515 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4582.5 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,574.6 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3405.3 +,10010,11.32,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1959.0927 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1957.1 +,10010,11.32,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6361.399 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6581.8 +,10010,11.32,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7454.66 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8573.4 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4498.7 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,563.0 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.4 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67930.0 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1236967.9 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1245496.9 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1233004.0 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,489328.3 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,674648.56 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,866324.56 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8529.0 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2612.3 +,10010,11.32,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,162286.83 +,10010,11.32,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,817259.5 +,10010,11.32,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10010,11.32,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,554392.6 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,756.7 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1057.5 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1126845E7 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1005125.0 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,989676.0 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,988970.7 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,14078.0 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,938.0 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,477.4 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,633.7 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,557.8 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,754.2 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,790.7 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1103985.9 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,184803.14 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,239857.55 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,569.2408 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,703.3 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,219.4503 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1089.1 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2706.5537 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3154.9 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,32416.1 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,7797.1 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,1621.2722 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3270.7 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,506.5 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4590.6 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1324.6819 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1823.5 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,1928.5027 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4843.6 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,5310.6973 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6700.6 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3252.3 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,393.4 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1384177.0 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,205.8 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,190330.4 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,243486.61 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,289.9404 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,610.9 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,445.5506 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1267.1 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2687.9336 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3377.4 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,31783.4 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,7359.2 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,1916.5326 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2930.9 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,368.8 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7501.4 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1287.4418 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1635.4 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5018.0967 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4827.8 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,4693.5767 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6801.3 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3148.3 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,310.7 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,5.9 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,51241.0 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,912015.7 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,925093.7 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,910242.0 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,375133.53 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,483344.16 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,599109.1 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13078.0 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1670.9 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,170520.86 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,559397.44 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10011,9.16,ADHD-Inattentive,Female,106,107,102,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,376248.22 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,804.0 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1847.4 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10012,12.41,ADHD-Combined,Female,100,97,102,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1112382E7 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1046014.0 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1033224.0 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1033136.7 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17031.4 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,820.4 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,627.7 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,620.6 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,590.3 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,857.5 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,802.2 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1275860.6 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,174527.23 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,241199.66 +,10012,12.41,ADHD-Combined,Female,100,97,102,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,474.81067 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,515.5 +,10012,12.41,ADHD-Combined,Female,100,97,102,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,424.27057 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1200.7 +,10012,12.41,ADHD-Combined,Female,100,97,102,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4095.0757 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3878.1 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57172.4 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11954.7 +,10012,12.41,ADHD-Combined,Female,100,97,102,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3614.945 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3292.2 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,306.9 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3938.8 +,10012,12.41,ADHD-Combined,Female,100,97,102,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1614.6222 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1760.6 +,10012,12.41,ADHD-Combined,Female,100,97,102,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4938.297 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5444.1 +,10012,12.41,ADHD-Combined,Female,100,97,102,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7051.67 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7080.1 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3612.3 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,588.0 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1357028.0 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,75.2 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,178105.47 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,246086.33 +,10012,12.41,ADHD-Combined,Female,100,97,102,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,434.91058 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,560.2 +,10012,12.41,ADHD-Combined,Female,100,97,102,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,289.9404 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1378.5 +,10012,12.41,ADHD-Combined,Female,100,97,102,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4140.296 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4120.8 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57286.4 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11745.6 +,10012,12.41,ADHD-Combined,Female,100,97,102,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3198.6543 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3281.9 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,329.2 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4168.5 +,10012,12.41,ADHD-Combined,Female,100,97,102,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1534.8221 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1546.3 +,10012,12.41,ADHD-Combined,Female,100,97,102,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5155.087 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5466.3 +,10012,12.41,ADHD-Combined,Female,100,97,102,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7514.5103 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6876.6 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3662.2 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,709.4 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.0 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55641.0 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,898167.7 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,907767.7 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,895582.0 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,352632.7 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,487285.97 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,657627.0 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9600.0 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1234.4 +,10012,12.41,ADHD-Combined,Female,100,97,102,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,153987.61 +,10012,12.41,ADHD-Combined,Female,100,97,102,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,620597.5 +,10012,12.41,ADHD-Combined,Female,100,97,102,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10012,12.41,ADHD-Combined,Female,100,97,102,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,406255.72 +,10013,9.55,ADHD-Combined,Male,97,88,106,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1138904E7 +,10013,9.55,ADHD-Combined,Male,97,88,106,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,232.75032 +,10013,9.55,ADHD-Combined,Male,97,88,106,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,1766.2424 +,10013,9.55,ADHD-Combined,Male,97,88,106,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,917.7013 +,10013,9.55,ADHD-Combined,Male,97,88,106,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,801.9911 +,10013,9.55,ADHD-Combined,Male,97,88,106,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,1255.5217 +,10013,9.55,ADHD-Combined,Male,97,88,106,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,3739.965 +,10013,9.55,ADHD-Combined,Male,97,88,106,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,601.1608 +,10013,9.55,ADHD-Combined,Male,97,88,106,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,1694.4224 +,10013,9.55,ADHD-Combined,Male,97,88,106,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,1171.7316 +,10013,9.55,ADHD-Combined,Male,97,88,106,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,619.7809 +,10013,9.55,ADHD-Combined,Male,97,88,106,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,1267.4917 +,10013,9.55,ADHD-Combined,Male,97,88,106,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,3891.5854 +,10013,9.55,ADHD-Combined,Male,97,88,106,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,124626.49 +,10013,9.55,ADHD-Combined,Male,97,88,106,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,561764.8 +,10013,9.55,ADHD-Combined,Male,97,88,106,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,404274.0 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,739.6 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1166.7 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10014,7.55,Typically Developing Children,Female,99,98,99,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1111217E7 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1113037.0 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1100299.0 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1100088.2 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17175.5 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,911.2 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,659.4 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,531.9 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,521.2 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,730.2 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,956.4 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1349000.4 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,189050.72 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,267422.56 +,10014,7.55,Typically Developing Children,Female,99,98,99,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,736.82104 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,665.5 +,10014,7.55,Typically Developing Children,Female,99,98,99,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,849.87115 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1215.0 +,10014,7.55,Typically Developing Children,Female,99,98,99,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3521.8447 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3342.8 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54830.9 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12823.7 +,10014,7.55,Typically Developing Children,Female,99,98,99,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3121.5144 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3246.2 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,360.9 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4861.3 +,10014,7.55,Typically Developing Children,Female,99,98,99,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1835.4026 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2107.8 +,10014,7.55,Typically Developing Children,Female,99,98,99,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5454.3374 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5519.9 +,10014,7.55,Typically Developing Children,Female,99,98,99,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7539.7803 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7328.2 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3677.5 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,310.2 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,11.6 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1458479.0 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,100.4 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,189966.05 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,264188.9 +,10014,7.55,Typically Developing Children,Female,99,98,99,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,512.0507 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,620.0 +,10014,7.55,Typically Developing Children,Female,99,98,99,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,839.23114 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1413.9 +,10014,7.55,Typically Developing Children,Female,99,98,99,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3551.105 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3416.0 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54337.2 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12017.7 +,10014,7.55,Typically Developing Children,Female,99,98,99,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2843.544 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3287.1 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,254.5 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4334.5 +,10014,7.55,Typically Developing Children,Female,99,98,99,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1852.6925 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2004.0 +,10014,7.55,Typically Developing Children,Female,99,98,99,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5297.3975 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5426.7 +,10014,7.55,Typically Developing Children,Female,99,98,99,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7691.4004 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7149.5 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3463.9 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,433.4 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.0 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56001.0 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,969297.25 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,979402.25 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,966741.0 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,379016.75 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,531611.5 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,696956.5 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10105.0 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,894.8 +,10014,7.55,Typically Developing Children,Female,99,98,99,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,161079.19 +,10014,7.55,Typically Developing Children,Female,99,98,99,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,670332.9 +,10014,7.55,Typically Developing Children,Female,99,98,99,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10014,7.55,Typically Developing Children,Female,99,98,99,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,440439.4 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,970.0 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1567.6 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1104978E7 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1183023.0 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1167342.0 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1167443.9 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19036.1 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1069.9 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,537.2 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,619.7 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,619.7 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1070.8 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,995.9 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1604129.0 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,207775.73 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,264114.75 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,534.66077 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,552.7 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1270.1517 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1562.2 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4478.116 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4629.0 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58788.0 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15787.4 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3231.9045 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3985.3 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,417.6 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6595.6 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2045.5428 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2446.3 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5909.198 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5699.6 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9110.513 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9198.8 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4522.3 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,436.5 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1690161.0 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,255.1 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,209960.0 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,276978.44 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,280.63037 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,511.2 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1061.3414 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1851.6 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4774.7065 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4581.6 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53619.7 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13643.5 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3924.8354 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4141.2 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,477.0 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4312.0 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1264.8318 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2487.7 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5684.4277 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5734.3 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8315.172 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8793.0 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4187.8 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,458.1 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.4 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67278.0 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1027923.94 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1040268.94 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1025815.0 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,417735.75 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,541093.2 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,720701.2 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12345.0 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1969.8 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,229800.38 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,765031.7 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10015,11.21,ADHD-Inattentive,Male,129,133,119,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,533672.56 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1750.2 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,4271.7 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10016,8.7,ADHD-Combined,Male,80,78,87,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1106832E7 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1168837.0 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1135613.0 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1135226.8 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20686.8 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,925.9 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,497.4 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,631.1 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,467.4 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,686.7 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1130.3 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1655636.8 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,194454.44 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,278418.22 +,10016,8.7,ADHD-Combined,Male,80,78,87,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,420.28058 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,935.5 +,10016,8.7,ADHD-Combined,Male,80,78,87,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,940.3113 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1875.2 +,10016,8.7,ADHD-Combined,Male,80,78,87,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3904.8853 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4043.4 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56346.1 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12045.9 +,10016,8.7,ADHD-Combined,Male,80,78,87,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3000.4841 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4158.0 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,1052.1 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,14546.5 +,10016,8.7,ADHD-Combined,Male,80,78,87,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2005.6428 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2343.5 +,10016,8.7,ADHD-Combined,Male,80,78,87,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5748.268 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6802.8 +,10016,8.7,ADHD-Combined,Male,80,78,87,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8234.041 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8159.9 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4698.7 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,574.7 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,16.3 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1739464.0 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,185.0 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,186744.33 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,268593.7 +,10016,8.7,ADHD-Combined,Male,80,78,87,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,90.440125 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,786.2 +,10016,8.7,ADHD-Combined,Male,80,78,87,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,915.04126 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2045.4 +,10016,8.7,ADHD-Combined,Male,80,78,87,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4180.196 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4253.4 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58539.6 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11435.2 +,10016,8.7,ADHD-Combined,Male,80,78,87,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3701.395 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4106.4 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,560.8 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,9513.0 +,10016,8.7,ADHD-Combined,Male,80,78,87,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1726.3424 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2263.9 +,10016,8.7,ADHD-Combined,Male,80,78,87,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6849.5093 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6977.0 +,10016,8.7,ADHD-Combined,Male,80,78,87,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8315.172 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8123.4 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4735.0 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,607.3 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,37.3 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68722.0 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,998923.7 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1025162.7 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,997194.0 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,381198.78 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,547011.94 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,731434.94 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,26239.0 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2799.6 +,10016,8.7,ADHD-Combined,Male,80,78,87,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,226208.05 +,10016,8.7,ADHD-Combined,Male,80,78,87,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,759629.2 +,10016,8.7,ADHD-Combined,Male,80,78,87,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10016,8.7,ADHD-Combined,Male,80,78,87,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,509860.2 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,760.5 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1152.6 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10017,12.38,ADHD-Combined,Male,94,90,98,http://purl.org/nidash/fsl#,Background (mm^3),,,1.11237E7 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,945518.0 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,935830.0 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,935996.2 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,13891.3 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,579.7 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,340.0 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,385.1 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,443.3 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,656.3 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,650.4 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1155805.2 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,166486.5 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,233760.38 +,10017,12.38,ADHD-Combined,Male,94,90,98,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,468.16064 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,548.5 +,10017,12.38,ADHD-Combined,Male,94,90,98,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,391.02054 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1362.8 +,10017,12.38,ADHD-Combined,Male,94,90,98,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2914.034 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3648.8 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,33801.7 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,7812.9 +,10017,12.38,ADHD-Combined,Male,94,90,98,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2227.7532 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3396.3 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,334.5 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3722.1 +,10017,12.38,ADHD-Combined,Male,94,90,98,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1417.782 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1729.7 +,10017,12.38,ADHD-Combined,Male,94,90,98,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,3626.915 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4495.1 +,10017,12.38,ADHD-Combined,Male,94,90,98,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,5213.6074 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6138.9 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3615.6 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,421.4 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,21.2 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1338119.0 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,80.6 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,167399.47 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,234811.84 +,10017,12.38,ADHD-Combined,Male,94,90,98,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,325.85046 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,632.3 +,10017,12.38,ADHD-Combined,Male,94,90,98,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,528.01074 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1476.1 +,10017,12.38,ADHD-Combined,Male,94,90,98,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3519.1848 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3445.3 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,33552.0 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,6870.7 +,10017,12.38,ADHD-Combined,Male,94,90,98,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2147.953 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3474.9 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,194.3 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2719.5 +,10017,12.38,ADHD-Combined,Male,94,90,98,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1357.9319 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1582.4 +,10017,12.38,ADHD-Combined,Male,94,90,98,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,3863.6553 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4567.5 +,10017,12.38,ADHD-Combined,Male,94,90,98,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,5161.7373 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6036.1 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3188.4 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,468.0 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,51028.0 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,855391.2 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,862679.2 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,853243.0 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,333885.97 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,468572.22 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,587855.2 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7288.0 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,930.5 +,10017,12.38,ADHD-Combined,Male,94,90,98,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,168331.69 +,10017,12.38,ADHD-Combined,Male,94,90,98,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,557022.06 +,10017,12.38,ADHD-Combined,Male,94,90,98,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10017,12.38,ADHD-Combined,Male,94,90,98,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,359480.88 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,888.5 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2374.2 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10018,11.54,ADHD-Combined,Male,94,100,89,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1107369E7 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1039610.0 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1027956.0 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1027964.3 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16852.4 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,862.8 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,646.9 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,683.0 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,320.2 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,650.3 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1064.4 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1468485.5 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,188660.33 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,239547.05 +,10018,11.54,ADHD-Combined,Male,94,100,89,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,448.21063 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,618.9 +,10018,11.54,ADHD-Combined,Male,94,100,89,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1163.7516 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1505.8 +,10018,11.54,ADHD-Combined,Male,94,100,89,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3972.7156 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4238.3 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,44415.2 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10693.6 +,10018,11.54,ADHD-Combined,Male,94,100,89,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2975.214 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4040.6 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,213.4 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3293.4 +,10018,11.54,ADHD-Combined,Male,94,100,89,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1630.5823 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2164.7 +,10018,11.54,ADHD-Combined,Male,94,100,89,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5334.637 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5507.0 +,10018,11.54,ADHD-Combined,Male,94,100,89,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8795.302 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7716.6 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4461.8 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,438.0 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1600457.0 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,115.0 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,189964.28 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,238540.66 +,10018,11.54,ADHD-Combined,Male,94,100,89,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,307.2304 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,677.2 +,10018,11.54,ADHD-Combined,Male,94,100,89,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,759.431 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1697.9 +,10018,11.54,ADHD-Combined,Male,94,100,89,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4575.206 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4543.1 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,43366.5 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,9694.1 +,10018,11.54,ADHD-Combined,Male,94,100,89,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3698.735 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4189.2 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,339.9 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3359.4 +,10018,11.54,ADHD-Combined,Male,94,100,89,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1723.6824 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2004.7 +,10018,11.54,ADHD-Combined,Male,94,100,89,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5713.688 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5908.8 +,10018,11.54,ADHD-Combined,Male,94,100,89,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8396.302 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7773.6 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3945.5 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,487.8 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,43.0 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63213.0 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,921469.3 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,928949.3 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,919835.0 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,378624.6 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,478087.7 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,629393.7 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7480.0 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2199.9 +,10018,11.54,ADHD-Combined,Male,94,100,89,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,258539.06 +,10018,11.54,ADHD-Combined,Male,94,100,89,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,656514.2 +,10018,11.54,ADHD-Combined,Male,94,100,89,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10018,11.54,ADHD-Combined,Male,94,100,89,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,500367.97 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1120.1 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1630.8 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10019,14.81,ADHD-Combined,Male,120,119,116,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1102261E7 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1491023.0 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1457279.0 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1457448.8 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21342.5 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1435.9 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,657.9 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,659.9 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,673.4 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1221.8 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1154.9 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1837878.5 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,284137.16 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,334042.66 +,10019,14.81,ADHD-Combined,Male,120,119,116,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,642.3872 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,673.4 +,10019,14.81,ADHD-Combined,Male,120,119,116,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,559.92755 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1614.6 +,10019,14.81,ADHD-Combined,Male,120,119,116,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4375.681 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4459.7 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60732.8 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14971.2 +,10019,14.81,ADHD-Combined,Male,120,119,116,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,5044.668 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3812.9 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,867.6 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,16566.9 +,10019,14.81,ADHD-Combined,Male,120,119,116,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1944.4515 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2173.4 +,10019,14.81,ADHD-Combined,Male,120,119,116,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6518.302 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6273.1 +,10019,14.81,ADHD-Combined,Male,120,119,116,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8396.253 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8317.0 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,5101.0 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,365.2 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,9.6 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1913485.0 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,240.5 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,282566.28 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,336735.6 +,10019,14.81,ADHD-Combined,Male,120,119,116,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,400.32825 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,607.0 +,10019,14.81,ADHD-Combined,Male,120,119,116,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,609.1373 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1979.4 +,10019,14.81,ADHD-Combined,Male,120,119,116,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4416.9106 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4434.3 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62181.4 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15249.1 +,10019,14.81,ADHD-Combined,Male,120,119,116,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3984.6626 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4456.4 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,415.7 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,11601.2 +,10019,14.81,ADHD-Combined,Male,120,119,116,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1949.7715 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1999.3 +,10019,14.81,ADHD-Combined,Male,120,119,116,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6772.3306 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6285.9 +,10019,14.81,ADHD-Combined,Male,120,119,116,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8924.261 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7846.4 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4859.0 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,687.0 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,22.6 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66699.0 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1307433.8 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1337434.8 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1303773.0 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,566703.44 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,670778.25 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,861728.25 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,30001.0 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1455.8 +,10019,14.81,ADHD-Combined,Male,120,119,116,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,219320.03 +,10019,14.81,ADHD-Combined,Male,120,119,116,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,803566.56 +,10019,14.81,ADHD-Combined,Male,120,119,116,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,6.3 +,10019,14.81,ADHD-Combined,Male,120,119,116,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,590867.2 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,746.8 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1686.7 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10020,8.37,ADHD-Combined,Female,95,86,105,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1116662E7 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,967875.0 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,952746.0 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,952756.56 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17642.0 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,965.7 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,620.8 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,570.1 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,561.6 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,838.7 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1029.5 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1309690.1 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,158533.78 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,224705.19 +,10020,8.37,ADHD-Combined,Female,95,86,105,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,348.46048 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,646.6 +,10020,8.37,ADHD-Combined,Female,95,86,105,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,767.4111 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,778.8 +,10020,8.37,ADHD-Combined,Female,95,86,105,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3359.5847 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3337.8 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56450.1 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11375.0 +,10020,8.37,ADHD-Combined,Female,95,86,105,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2327.5032 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2774.1 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,116.2 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5915.6 +,10020,8.37,ADHD-Combined,Female,95,86,105,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1464.332 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1652.3 +,10020,8.37,ADHD-Combined,Female,95,86,105,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4778.697 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4901.0 +,10020,8.37,ADHD-Combined,Female,95,86,105,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7119.5 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7033.1 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3255.0 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,365.3 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,10.7 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1361911.0 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,93.2 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,158304.08 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,224236.52 +,10020,8.37,ADHD-Combined,Female,95,86,105,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,238.07033 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,477.1 +,10020,8.37,ADHD-Combined,Female,95,86,105,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,724.851 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1090.2 +,10020,8.37,ADHD-Combined,Female,95,86,105,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3218.6045 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3384.1 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57590.6 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11062.4 +,10020,8.37,ADHD-Combined,Female,95,86,105,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2475.1333 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3074.0 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,182.5 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5146.1 +,10020,8.37,ADHD-Combined,Female,95,86,105,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1497.582 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1605.4 +,10020,8.37,ADHD-Combined,Female,95,86,105,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5107.207 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4924.3 +,10020,8.37,ADHD-Combined,Female,95,86,105,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6775.0293 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6913.3 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3335.7 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,407.9 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,51128.0 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,818841.56 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,830697.56 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,816800.0 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,316837.84 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,448941.7 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,614352.7 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11856.0 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1247.0 +,10020,8.37,ADHD-Combined,Female,95,86,105,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,157360.5 +,10020,8.37,ADHD-Combined,Female,95,86,105,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,632282.9 +,10020,8.37,ADHD-Combined,Female,95,86,105,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10020,8.37,ADHD-Combined,Female,95,86,105,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,392466.25 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1293.7 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1254.4 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10021,12.54,Typically Developing Children,Female,109,105,112,http://purl.org/nidash/fsl#,Background (mm^3),,,1.110952E7 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1259868.0 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1232807.0 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1232929.0 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20450.6 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1101.0 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,400.3 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,411.6 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,323.6 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,895.8 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,2839.4 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1611436.6 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,224188.52 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,289793.03 +,10021,12.54,Typically Developing Children,Female,109,105,112,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,630.4209 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,700.4 +,10021,12.54,Typically Developing Children,Female,109,105,112,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,796.6711 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1380.5 +,10021,12.54,Typically Developing Children,Female,109,105,112,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4180.196 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4597.5 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61432.9 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14415.5 +,10021,12.54,Typically Developing Children,Female,109,105,112,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3738.6353 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3687.7 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,224.6 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,10913.7 +,10021,12.54,Typically Developing Children,Female,109,105,112,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1790.1825 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2272.7 +,10021,12.54,Typically Developing Children,Female,109,105,112,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4559.246 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4660.4 +,10021,12.54,Typically Developing Children,Female,109,105,112,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7388.16 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8305.1 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4110.1 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,643.7 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,24.6 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1639242.0 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,164.7 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,222228.6 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,286547.78 +,10021,12.54,Typically Developing Children,Female,109,105,112,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,468.16064 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,588.5 +,10021,12.54,Typically Developing Children,Female,109,105,112,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,425.6006 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1439.0 +,10021,12.54,Typically Developing Children,Female,109,105,112,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4358.416 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4518.7 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59975.6 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13666.7 +,10021,12.54,Typically Developing Children,Female,109,105,112,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4302.556 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3590.0 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,254.4 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,9537.7 +,10021,12.54,Typically Developing Children,Female,109,105,112,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2112.043 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1984.6 +,10021,12.54,Typically Developing Children,Female,109,105,112,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4745.4463 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4790.8 +,10021,12.54,Typically Developing Children,Female,109,105,112,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7848.341 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8380.2 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4156.5 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,619.3 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,27.3 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61183.0 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1086739.0 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1108452.0 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1083690.0 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,446417.1 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,576340.8 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,759423.8 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,21713.0 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1134.3 +,10021,12.54,Typically Developing Children,Female,109,105,112,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,168011.16 +,10021,12.54,Typically Developing Children,Female,109,105,112,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,732820.4 +,10021,12.54,Typically Developing Children,Female,109,105,112,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10021,12.54,Typically Developing Children,Female,109,105,112,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,512709.06 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1473.1 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1749.0 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10022,12.12,ADHD-Combined,Male,105,100,108,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1108874E7 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1226259.0 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1208909.0 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1208351.9 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21152.1 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,995.8 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,426.3 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,552.0 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,451.7 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,679.4 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1101.0 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1709547.5 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,208066.16 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,295435.3 +,10022,12.12,ADHD-Combined,Male,105,100,108,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,242.06033 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,888.9 +,10022,12.12,ADHD-Combined,Male,105,100,108,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,694.261 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1830.1 +,10022,12.12,ADHD-Combined,Male,105,100,108,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4029.9055 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,5100.1 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62709.5 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,17207.0 +,10022,12.12,ADHD-Combined,Male,105,100,108,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3286.4346 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4009.8 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,379.8 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5693.1 +,10022,12.12,ADHD-Combined,Male,105,100,108,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1973.7227 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2149.0 +,10022,12.12,ADHD-Combined,Male,105,100,108,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4770.717 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6061.4 +,10022,12.12,ADHD-Combined,Male,105,100,108,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8917.662 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8085.0 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4949.0 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,590.8 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,4.7 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1900190.0 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,208.5 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,197144.39 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,277729.0 +,10022,12.12,ADHD-Combined,Male,105,100,108,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,367.0805 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,712.2 +,10022,12.12,ADHD-Combined,Male,105,100,108,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,931.0013 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1789.3 +,10022,12.12,ADHD-Combined,Male,105,100,108,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3746.6152 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5524.4 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,65665.9 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15328.2 +,10022,12.12,ADHD-Combined,Male,105,100,108,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3633.565 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4454.0 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,431.1 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5815.3 +,10022,12.12,ADHD-Combined,Male,105,100,108,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1497.582 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2089.8 +,10022,12.12,ADHD-Combined,Male,105,100,108,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5363.8975 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6019.2 +,10022,12.12,ADHD-Combined,Male,105,100,108,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8535.952 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8138.5 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4987.8 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,590.5 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,20.8 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,69171.0 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1049688.9 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1062662.9 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1047942.0 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,405210.56 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,573164.3 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,771582.3 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12974.0 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2388.0 +,10022,12.12,ADHD-Combined,Male,105,100,108,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,242214.61 +,10022,12.12,ADHD-Combined,Male,105,100,108,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,818008.3 +,10022,12.12,ADHD-Combined,Male,105,100,108,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10022,12.12,ADHD-Combined,Male,105,100,108,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,596722.6 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,965.1 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2219.1 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10023,13.42,Typically Developing Children,Male,105,105,104,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1109511E7 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1252063.0 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1236321.0 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1236216.8 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22049.1 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1013.3 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,496.2 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,517.6 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,323.7 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,796.9 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1675.0 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1516254.1 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,227918.33 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,282125.0 +,10023,13.42,Typically Developing Children,Male,105,105,104,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,438.9006 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,683.8 +,10023,13.42,Typically Developing Children,Male,105,105,104,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,720.86096 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1491.7 +,10023,13.42,Typically Developing Children,Male,105,105,104,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3829.0752 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3971.7 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60471.6 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13999.0 +,10023,13.42,Typically Developing Children,Male,105,105,104,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3704.0552 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4135.8 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,458.4 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4955.4 +,10023,13.42,Typically Developing Children,Male,105,105,104,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1828.7526 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2035.7 +,10023,13.42,Typically Developing Children,Male,105,105,104,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6235.049 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6233.1 +,10023,13.42,Typically Developing Children,Male,105,105,104,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7239.2 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8559.0 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4417.1 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,602.3 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,15.8 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1601240.0 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,130.5 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,229921.25 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,282668.12 +,10023,13.42,Typically Developing Children,Male,105,105,104,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,275.31036 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,549.1 +,10023,13.42,Typically Developing Children,Male,105,105,104,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,605.1508 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1805.4 +,10023,13.42,Typically Developing Children,Male,105,105,104,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3452.6848 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4030.3 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59761.4 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14748.9 +,10023,13.42,Typically Developing Children,Male,105,105,104,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4040.5457 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4483.4 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,388.8 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4449.6 +,10023,13.42,Typically Developing Children,Male,105,105,104,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1925.8427 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1975.7 +,10023,13.42,Typically Developing Children,Male,105,105,104,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6357.4087 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6341.0 +,10023,13.42,Typically Developing Children,Male,105,105,104,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6700.5493 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7979.3 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4226.4 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,674.2 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,10.6 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64788.0 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1089977.8 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1100978.8 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1087427.0 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,457839.6 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,564793.1 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,750642.1 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11001.0 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,896.7 +,10023,13.42,Typically Developing Children,Male,105,105,104,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,197962.8 +,10023,13.42,Typically Developing Children,Male,105,105,104,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,722320.0 +,10023,13.42,Typically Developing Children,Male,105,105,104,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10023,13.42,Typically Developing Children,Male,105,105,104,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,532272.06 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1418.5 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2476.0 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10024,8.26,Typically Developing Children,Male,112,107,114,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1102037E7 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1377999.0 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1357854.0 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1357695.2 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19817.9 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1138.8 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,622.8 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,637.8 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,624.5 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,972.3 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1035.7 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1639497.8 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,251636.61 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,316360.16 +,10024,8.26,Typically Developing Children,Male,112,107,114,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,649.0409 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,991.4 +,10024,8.26,Typically Developing Children,Male,112,107,114,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,474.81067 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1833.3 +,10024,8.26,Typically Developing Children,Male,112,107,114,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4552.596 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4700.9 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,65965.8 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13251.8 +,10024,8.26,Typically Developing Children,Male,112,107,114,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4049.8555 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4364.8 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,465.7 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8032.1 +,10024,8.26,Typically Developing Children,Male,112,107,114,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1960.4227 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2428.2 +,10024,8.26,Typically Developing Children,Male,112,107,114,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6765.719 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,7121.6 +,10024,8.26,Typically Developing Children,Male,112,107,114,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8359.062 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7938.0 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4678.8 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,419.4 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,11.4 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1788045.0 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,206.4 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,249260.58 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,314365.88 +,10024,8.26,Typically Developing Children,Male,112,107,114,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,732.831 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,951.9 +,10024,8.26,Typically Developing Children,Male,112,107,114,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,903.0712 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1861.2 +,10024,8.26,Typically Developing Children,Male,112,107,114,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4874.4565 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4824.2 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,65312.0 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12527.3 +,10024,8.26,Typically Developing Children,Male,112,107,114,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3791.8352 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4425.1 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,315.3 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6288.4 +,10024,8.26,Typically Developing Children,Male,112,107,114,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2195.833 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1941.4 +,10024,8.26,Typically Developing Children,Male,112,107,114,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6889.4097 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,7206.8 +,10024,8.26,Typically Developing Children,Male,112,107,114,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8627.722 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8106.3 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4656.1 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,539.9 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,2.4 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,69670.0 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1204163.2 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1219614.2 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1201256.0 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,500897.2 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,630726.0 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,831993.0 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15451.0 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1000.0 +,10024,8.26,Typically Developing Children,Male,112,107,114,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,176980.69 +,10024,8.26,Typically Developing Children,Male,112,107,114,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,768911.3 +,10024,8.26,Typically Developing Children,Male,112,107,114,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10024,8.26,Typically Developing Children,Male,112,107,114,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,565172.3 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1096.8 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2340.0 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10025,8.75,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1107252E7 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1235231.0 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1219698.0 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1219516.5 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18216.9 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1112.3 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,611.8 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,622.9 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,451.3 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,846.8 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1144.6 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1532797.5 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,209865.47 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,298163.22 +,10025,8.75,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,617.12085 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,698.3 +,10025,8.75,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,928.3413 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1489.2 +,10025,8.75,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4164.236 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4086.3 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53042.6 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12767.2 +,10025,8.75,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3525.835 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3542.5 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,485.5 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4626.2 +,10025,8.75,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1888.6025 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2046.0 +,10025,8.75,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6252.3384 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6199.3 +,10025,8.75,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7854.9907 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7892.3 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4079.8 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,435.4 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1652939.0 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,181.0 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,207693.38 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,304205.38 +,10025,8.75,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,341.8105 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,740.9 +,10025,8.75,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,542.64075 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1804.9 +,10025,8.75,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4432.896 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4480.7 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58248.1 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12413.0 +,10025,8.75,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4121.676 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3848.8 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,311.1 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5262.9 +,10025,8.75,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1814.1226 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1882.8 +,10025,8.75,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6304.2085 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6336.8 +,10025,8.75,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6822.909 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7890.1 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3958.0 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,589.3 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.3 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63072.0 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1085712.5 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1096876.5 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1083023.0 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,417558.84 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,602368.6 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,777531.6 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11164.0 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,960.2 +,10025,8.75,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,176525.83 +,10025,8.75,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,744541.7 +,10025,8.75,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10025,8.75,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,465012.53 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,826.7 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1371.0 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10026,11.73,ADHD-Combined,Male,131,123,132,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1102331E7 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1318762.0 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1298660.0 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1298760.6 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20073.9 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1064.2 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,636.4 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,596.4 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,629.9 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,947.6 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1041.6 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1649161.5 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,238902.47 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,293869.84 +,10026,11.73,ADHD-Combined,Male,131,123,132,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,324.52045 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,748.1 +,10026,11.73,ADHD-Combined,Male,131,123,132,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,964.25134 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1604.2 +,10026,11.73,ADHD-Combined,Male,131,123,132,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4209.4556 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4211.2 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63837.4 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,17637.2 +,10026,11.73,ADHD-Combined,Male,131,123,132,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3418.1047 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3884.9 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,317.4 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8407.9 +,10026,11.73,ADHD-Combined,Male,131,123,132,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2009.6328 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2130.4 +,10026,11.73,ADHD-Combined,Male,131,123,132,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6623.409 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6334.8 +,10026,11.73,ADHD-Combined,Male,131,123,132,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9510.843 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8576.5 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4833.8 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,755.7 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,15.4 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1756703.0 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,193.2 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,239556.1 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,295227.25 +,10026,11.73,ADHD-Combined,Male,131,123,132,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,496.0907 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,634.4 +,10026,11.73,ADHD-Combined,Male,131,123,132,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1323.3518 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1861.2 +,10026,11.73,ADHD-Combined,Male,131,123,132,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4471.4663 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4391.0 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64336.1 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,17764.3 +,10026,11.73,ADHD-Combined,Male,131,123,132,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3544.4548 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4304.9 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,347.4 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7176.4 +,10026,11.73,ADHD-Combined,Male,131,123,132,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2009.6328 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1988.2 +,10026,11.73,ADHD-Combined,Male,131,123,132,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6236.3784 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6162.7 +,10026,11.73,ADHD-Combined,Male,131,123,132,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9391.143 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8722.5 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4781.5 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,645.8 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,1.8 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67184.0 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1138318.6 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1155495.6 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1134469.0 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,478458.56 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,589097.06 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,785773.06 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,17177.0 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1094.3 +,10026,11.73,ADHD-Combined,Male,131,123,132,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,204676.64 +,10026,11.73,ADHD-Combined,Male,131,123,132,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,746394.4 +,10026,11.73,ADHD-Combined,Male,131,123,132,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10026,11.73,ADHD-Combined,Male,131,123,132,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,535071.7 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,580.9 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,973.4 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10027,8.28,ADHD-Combined,Male,96,92,100,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1117609E7 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1100408.0 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1088851.0 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1088324.6 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,14681.0 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,936.9 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,683.9 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,823.1 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,799.4 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,881.9 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,735.3 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1400251.2 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,189390.83 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,269744.12 +,10027,8.28,ADHD-Combined,Male,96,92,100,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,593.1774 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,608.1 +,10027,8.28,ADHD-Combined,Male,96,92,100,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,683.617 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1437.0 +,10027,8.28,ADHD-Combined,Male,96,92,100,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3544.4346 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3866.0 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,46835.2 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10254.2 +,10027,8.28,ADHD-Combined,Male,96,92,100,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2041.5411 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3757.4 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,328.8 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4649.6 +,10027,8.28,ADHD-Combined,Male,96,92,100,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1558.7532 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1867.9 +,10027,8.28,ADHD-Combined,Male,96,92,100,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5323.967 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5550.1 +,10027,8.28,ADHD-Combined,Male,96,92,100,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6326.782 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7296.0 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3725.5 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,357.5 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,32.1 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1519291.0 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,175.1 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,188712.84 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,266004.8 +,10027,8.28,ADHD-Combined,Male,96,92,100,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,424.26816 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,656.8 +,10027,8.28,ADHD-Combined,Male,96,92,100,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,143.63937 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1326.6 +,10027,8.28,ADHD-Combined,Male,96,92,100,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4085.7422 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4152.3 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,46417.5 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10921.1 +,10027,8.28,ADHD-Combined,Male,96,92,100,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,1901.8917 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3756.8 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,438.2 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3743.0 +,10027,8.28,ADHD-Combined,Male,96,92,100,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1388.5139 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1689.6 +,10027,8.28,ADHD-Combined,Male,96,92,100,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4732.119 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5633.6 +,10027,8.28,ADHD-Combined,Male,96,92,100,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6442.4917 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7529.9 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3493.5 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,446.5 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,63.6 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58927.0 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,976861.56 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,986338.56 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,973213.0 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,378103.66 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,535748.94 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,689761.94 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9477.0 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1617.7 +,10027,8.28,ADHD-Combined,Male,96,92,100,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,155850.05 +,10027,8.28,ADHD-Combined,Male,96,92,100,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,725876.25 +,10027,8.28,ADHD-Combined,Male,96,92,100,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10027,8.28,ADHD-Combined,Male,96,92,100,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,461896.34 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,903.1 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1537.7 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,http://purl.org/nidash/fsl#,Background (mm^3),,,1.110308E7 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1306182.0 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1291080.0 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1291043.5 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19345.5 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1083.2 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,693.7 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,561.4 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,480.9 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,915.1 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1038.8 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1593846.8 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,227697.08 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,322445.2 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,539.9807 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,776.7 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,972.2313 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1564.1 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4267.976 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4109.7 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52829.4 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11784.0 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3886.2654 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4107.3 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,478.7 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5490.1 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1927.1726 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2194.9 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5873.288 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5938.6 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9188.982 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8402.8 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4266.3 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,637.7 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.5 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1680790.0 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,124.6 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,223997.64 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,323367.56 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,577.2208 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,790.0 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1246.2117 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1835.5 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4271.966 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4251.4 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,52302.7 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11859.6 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3946.1155 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3985.6 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,504.9 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4561.5 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2008.3027 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2003.2 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5933.138 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5632.6 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9145.093 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8434.7 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4302.5 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,600.5 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,5.5 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64712.0 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1165199.5 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1177000.5 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1162159.0 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,451694.72 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,645812.75 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,816619.75 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11801.0 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,887.0 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,170625.94 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,770202.75 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10028,9.42,ADHD-Inattentive,Male,92,87,99,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,528883.2 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1308.7 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2760.0 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10029,13.09,ADHD-Combined,Female,127,121,126,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1109187E7 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1178600.0 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1157489.0 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1157416.6 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19434.9 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,748.2 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,425.1 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,560.7 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,514.9 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,909.5 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1033.3 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1477453.6 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,210165.36 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,274737.88 +,10029,13.09,ADHD-Combined,Female,127,121,126,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,529.3407 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,599.9 +,10029,13.09,ADHD-Combined,Female,127,121,126,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1032.0814 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1678.2 +,10029,13.09,ADHD-Combined,Female,127,121,126,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4182.856 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4335.5 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56102.8 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12091.2 +,10029,13.09,ADHD-Combined,Female,127,121,126,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3511.2048 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3998.6 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,465.7 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8582.2 +,10029,13.09,ADHD-Combined,Female,127,121,126,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1796.8325 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2216.7 +,10029,13.09,ADHD-Combined,Female,127,121,126,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5475.6177 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5932.2 +,10029,13.09,ADHD-Combined,Female,127,121,126,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7166.05 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6950.5 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4198.8 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,495.9 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,5.9 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1521289.0 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,139.8 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,206333.5 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,270259.88 +,10029,13.09,ADHD-Combined,Female,127,121,126,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,402.99054 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,713.2 +,10029,13.09,ADHD-Combined,Female,127,121,126,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,927.0113 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1672.3 +,10029,13.09,ADHD-Combined,Female,127,121,126,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4319.8457 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4387.3 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54298.4 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11885.6 +,10029,13.09,ADHD-Combined,Female,127,121,126,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3661.495 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4020.4 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,237.0 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6130.6 +,10029,13.09,ADHD-Combined,Female,127,121,126,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1876.6326 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1959.7 +,10029,13.09,ADHD-Combined,Female,127,121,126,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5628.568 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5867.5 +,10029,13.09,ADHD-Combined,Female,127,121,126,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7166.05 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7148.9 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4196.4 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,771.7 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,11.6 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62050.0 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1025925.6 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1042129.6 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1023512.0 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,416498.84 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,544997.75 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,717943.75 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,16204.0 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,748.3 +,10029,13.09,ADHD-Combined,Female,127,121,126,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,159303.62 +,10029,13.09,ADHD-Combined,Female,127,121,126,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,705774.8 +,10029,13.09,ADHD-Combined,Female,127,121,126,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10029,13.09,ADHD-Combined,Female,127,121,126,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,483093.9 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1721.3 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2274.7 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1102475E7 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1354811.0 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1337680.0 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1337798.6 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20452.7 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,785.5 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,733.0 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,605.1 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,537.7 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,896.3 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1122.2 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1622167.4 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,239916.55 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,306789.28 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,566.5775 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,834.9 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,917.696 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1578.6 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4008.6025 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3852.5 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,70327.9 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14995.7 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4330.461 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4373.5 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,455.2 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5780.5 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1818.102 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1980.1 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,7136.749 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6893.0 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8678.212 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8313.7 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4167.9 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,473.1 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,26.0 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1817448.0 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,163.1 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,239403.17 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,314866.56 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,422.93817 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,650.8 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1091.9253 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1906.3 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4164.212 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4052.8 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,69619.8 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14560.6 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4412.921 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4682.5 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,651.2 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4468.5 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1973.7114 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2012.6 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6700.5107 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6818.9 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8102.3247 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8618.3 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4267.2 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,721.1 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,28.6 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67223.0 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1171224.6 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1183395.6 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1167929.0 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,479319.72 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,621655.9 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,829942.9 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12171.0 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1317.6 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,215608.02 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,793031.6 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,1.7 +,10030,12.41,ADHD-Inattentive,Male,103,105,100,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,546837.75 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,804.9 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1466.7 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10031,11.87,Typically Developing Children,Female,85,77,97,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1113074E7 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1051501.0 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1036031.0 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1036108.1 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15541.5 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,914.9 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,484.9 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,443.6 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,505.8 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,879.7 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,915.4 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1323188.8 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,174319.27 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,253241.86 +,10031,11.87,Typically Developing Children,Female,85,77,97,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,736.82104 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,791.7 +,10031,11.87,Typically Developing Children,Female,85,77,97,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,619.7809 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1407.2 +,10031,11.87,Typically Developing Children,Female,85,77,97,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3527.1648 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3330.0 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52106.4 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11242.8 +,10031,11.87,Typically Developing Children,Female,85,77,97,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3505.8848 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3752.6 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,373.0 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5411.8 +,10031,11.87,Typically Developing Children,Female,85,77,97,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1488.2721 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1541.7 +,10031,11.87,Typically Developing Children,Female,85,77,97,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5290.747 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5467.2 +,10031,11.87,Typically Developing Children,Female,85,77,97,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7136.79 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6397.8 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3576.3 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,376.3 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,34.7 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1372752.0 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,130.0 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,173038.39 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,254519.64 +,10031,11.87,Typically Developing Children,Female,85,77,97,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,478.80066 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,737.9 +,10031,11.87,Typically Developing Children,Female,85,77,97,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,704.901 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1685.3 +,10031,11.87,Typically Developing Children,Female,85,77,97,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3576.375 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3426.7 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,52011.1 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10571.8 +,10031,11.87,Typically Developing Children,Female,85,77,97,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3367.5647 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3903.8 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,324.7 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5954.6 +,10031,11.87,Typically Developing Children,Female,85,77,97,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1295.4218 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1503.9 +,10031,11.87,Typically Developing Children,Female,85,77,97,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5260.157 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5597.8 +,10031,11.87,Typically Developing Children,Female,85,77,97,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6801.6294 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6453.4 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3367.2 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,482.2 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,31.5 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,54818.0 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,912692.1 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,925175.1 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,909804.0 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,347357.66 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,507761.5 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,667605.5 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12483.0 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,577.2 +,10031,11.87,Typically Developing Children,Female,85,77,97,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,154442.47 +,10031,11.87,Typically Developing Children,Female,85,77,97,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,644695.75 +,10031,11.87,Typically Developing Children,Female,85,77,97,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10031,11.87,Typically Developing Children,Female,85,77,97,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,409708.4 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,915.1 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1311.8 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10032,11.1,ADHD-Combined,Male,89,91,91,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1114452E7 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1074471.0 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1056902.0 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1056448.4 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,14986.9 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1118.4 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,463.8 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,476.9 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,328.4 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,617.1 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,949.1 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1257548.1 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,185968.69 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,264181.22 +,10032,11.1,ADHD-Combined,Male,89,91,91,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,208.81029 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,721.8 +,10032,11.1,ADHD-Combined,Male,89,91,91,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,750.12103 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1518.8 +,10032,11.1,ADHD-Combined,Male,89,91,91,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3402.1448 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3697.0 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,43031.8 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,9019.2 +,10032,11.1,ADHD-Combined,Male,89,91,91,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3274.4646 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3288.7 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,419.6 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7842.8 +,10032,11.1,ADHD-Combined,Male,89,91,91,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1320.6918 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1859.6 +,10032,11.1,ADHD-Combined,Male,89,91,91,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4795.987 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5488.9 +,10032,11.1,ADHD-Combined,Male,89,91,91,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7287.08 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6840.1 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3728.3 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,410.9 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,6.4 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1493482.0 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,110.3 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,183372.89 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,263764.53 +,10032,11.1,ADHD-Combined,Male,89,91,91,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,340.48047 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,668.5 +,10032,11.1,ADHD-Combined,Male,89,91,91,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,634.4109 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1503.9 +,10032,11.1,ADHD-Combined,Male,89,91,91,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3793.1653 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3808.1 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,41928.0 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,8447.1 +,10032,11.1,ADHD-Combined,Male,89,91,91,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3275.7944 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3570.1 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,470.9 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5359.8 +,10032,11.1,ADHD-Combined,Male,89,91,91,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1647.8723 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1590.0 +,10032,11.1,ADHD-Combined,Male,89,91,91,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5160.407 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5437.2 +,10032,11.1,ADHD-Combined,Male,89,91,91,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6520.999 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6813.6 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3945.5 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,553.9 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,4.3 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56168.0 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,956145.3 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,970733.3 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,953795.0 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,369341.6 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,527945.75 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,670076.75 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14588.0 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1287.3 +,10032,11.1,ADHD-Combined,Male,89,91,91,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,149951.06 +,10032,11.1,ADHD-Combined,Male,89,91,91,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,625561.06 +,10032,11.1,ADHD-Combined,Male,89,91,91,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10032,11.1,ADHD-Combined,Male,89,91,91,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,410769.75 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,859.9 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1682.9 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1108441E7 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1191497.0 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1181032.0 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1180711.5 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19341.3 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,797.9 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,612.6 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,580.3 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,515.7 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,955.3 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,848.1 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1449208.9 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,207017.05 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,284756.4 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,594.5108 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,763.4 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,763.421 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1448.9 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4128.3257 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3763.9 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58783.0 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12801.2 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3500.565 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3574.4 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,140.5 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3065.3 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1775.5525 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1793.8 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5205.627 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5319.5 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8134.291 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7441.7 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4090.5 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,484.3 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,4.8 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1595008.0 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,110.7 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,206071.9 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,279380.16 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,470.82065 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,771.9 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,863.1712 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1730.4 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4358.416 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4123.3 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60036.7 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12981.0 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3446.0347 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3709.8 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,206.4 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3518.5 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1871.3126 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1735.8 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5567.3877 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5501.2 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7743.2705 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7188.6 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3807.8 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,474.4 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58699.0 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1039360.5 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1046679.5 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1036121.0 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,413088.94 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,564136.56 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,742582.56 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7319.0 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1129.9 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,162572.78 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,718645.2 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,2.9 +,10033,10.97,ADHD-Inattentive,Male,100,97,104,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,481160.1 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1129.6 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2222.8 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10034,10.86,Typically Developing Children,Female,106,111,99,http://purl.org/nidash/fsl#,Background (mm^3),,,1.110246E7 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1294166.0 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1275957.0 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1275755.4 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21649.8 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1175.0 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,595.2 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,538.8 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,619.6 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,941.8 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1208.8 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1579546.0 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,222291.06 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,299294.38 +,10034,10.86,Typically Developing Children,Female,106,111,99,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,827.2611 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,809.1 +,10034,10.86,Typically Developing Children,Female,106,111,99,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,738.151 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1308.0 +,10034,10.86,Typically Developing Children,Female,106,111,99,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,5014.107 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4952.1 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,69347.8 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16929.6 +,10034,10.86,Typically Developing Children,Female,106,111,99,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4044.5356 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3944.7 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,310.6 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7100.4 +,10034,10.86,Typically Developing Children,Female,106,111,99,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1826.0925 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2178.8 +,10034,10.86,Typically Developing Children,Female,106,111,99,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5711.028 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5702.5 +,10034,10.86,Typically Developing Children,Female,106,111,99,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9220.902 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9118.6 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4397.5 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,429.9 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,53.4 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1726934.0 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,191.1 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,225522.61 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,297933.28 +,10034,10.86,Typically Developing Children,Female,106,111,99,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,651.7009 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,750.6 +,10034,10.86,Typically Developing Children,Female,106,111,99,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,988.19135 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1570.5 +,10034,10.86,Typically Developing Children,Female,106,111,99,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5145.777 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5011.0 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64919.1 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14813.4 +,10034,10.86,Typically Developing Children,Female,106,111,99,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3786.5151 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3716.8 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,309.9 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5557.2 +,10034,10.86,Typically Developing Children,Female,106,111,99,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1960.4227 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2022.1 +,10034,10.86,Typically Developing Children,Female,106,111,99,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5906.538 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5705.1 +,10034,10.86,Typically Developing Children,Female,106,111,99,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8582.502 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8090.2 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4564.6 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,661.4 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,23.3 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65607.0 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1113505.4 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1127356.4 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1110728.0 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,447813.7 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,597227.6 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,796980.6 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13851.0 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1032.4 +,10034,10.86,Typically Developing Children,Female,106,111,99,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,194845.27 +,10034,10.86,Typically Developing Children,Female,106,111,99,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,750078.5 +,10034,10.86,Typically Developing Children,Female,106,111,99,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10034,10.86,Typically Developing Children,Female,106,111,99,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,488910.0 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,625.0 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1842.8 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,http://purl.org/nidash/fsl#,Background (mm^3),,,1.111203E7 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1239961.0 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1229475.0 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1229823.0 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18231.7 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,745.7 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,497.6 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,616.6 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,509.0 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,737.7 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,610.9 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1501022.8 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,199127.0 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,308221.12 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,598.50085 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,799.4 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,775.39105 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1372.5 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3967.3955 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4075.8 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62654.6 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12245.4 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3105.5542 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3474.7 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,514.6 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3506.5 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1744.9624 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1866.1 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5020.757 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5064.5 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6390.6587 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7199.7 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3882.3 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,434.6 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,11.8 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1604868.0 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,170.8 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,199261.62 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,313321.22 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,555.9408 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,737.2 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,752.781 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1690.5 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4067.1455 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4172.9 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64975.5 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11885.8 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4048.5256 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3920.3 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,410.9 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2938.5 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1689.1023 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1702.8 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4905.047 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5070.8 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7212.6 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7044.6 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3965.3 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,488.4 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,9.2 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58309.0 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1080743.0 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1088421.0 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1077727.0 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,398388.62 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,621542.3 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,808100.3 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7678.0 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,967.6 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,150327.45 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,789443.9 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10035,8.95,ADHD-Inattentive,Male,109,106,109,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,471377.9 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,728.9 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1793.3 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10036,9.45,Typically Developing Children,Female,84,86,86,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1109046E7 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1191264.0 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1171841.0 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1171430.5 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18343.0 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,956.0 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,421.2 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,526.1 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,480.7 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,872.1 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,947.6 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1495939.4 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,196825.81 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,289240.47 +,10036,9.45,Typically Developing Children,Female,84,86,86,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,461.51062 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,786.8 +,10036,9.45,Typically Developing Children,Female,84,86,86,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,678.3009 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1250.6 +,10036,9.45,Typically Developing Children,Female,84,86,86,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3344.9546 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3985.7 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60296.4 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11582.3 +,10036,9.45,Typically Developing Children,Female,84,86,86,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3613.615 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3804.1 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,196.7 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8316.6 +,10036,9.45,Typically Developing Children,Female,84,86,86,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1687.7723 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2125.0 +,10036,9.45,Typically Developing Children,Female,84,86,86,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6155.2485 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6328.7 +,10036,9.45,Typically Developing Children,Female,84,86,86,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7454.66 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7851.2 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4386.5 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,419.0 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,2.0 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1619766.0 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,133.3 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,195469.62 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,286317.6 +,10036,9.45,Typically Developing Children,Female,84,86,86,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,405.65057 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,697.8 +,10036,9.45,Typically Developing Children,Female,84,86,86,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,807.3111 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1804.3 +,10036,9.45,Typically Developing Children,Female,84,86,86,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4113.696 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4080.8 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57779.3 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11072.0 +,10036,9.45,Typically Developing Children,Female,84,86,86,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3657.5051 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3796.8 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,608.0 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6579.2 +,10036,9.45,Typically Developing Children,Female,84,86,86,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1844.7125 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1880.0 +,10036,9.45,Typically Developing Children,Female,84,86,86,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6318.839 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6468.9 +,10036,9.45,Typically Developing Children,Female,84,86,86,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7273.78 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7595.2 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4221.6 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,615.7 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,20.7 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63425.0 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1033968.5 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1050227.5 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1031565.0 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,392295.44 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,575558.06 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,757324.06 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,16259.0 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1502.1 +,10036,9.45,Typically Developing Children,Female,84,86,86,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,147817.73 +,10036,9.45,Typically Developing Children,Female,84,86,86,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,724844.4 +,10036,9.45,Typically Developing Children,Female,84,86,86,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10036,9.45,Typically Developing Children,Female,84,86,86,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,454364.53 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1273.6 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2081.9 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10037,10.9,ADHD-Combined,Male,91,85,100,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1105967E7 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1313845.0 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1295354.0 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1295502.2 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22176.2 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,852.5 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,571.6 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,571.8 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,503.4 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,721.1 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1065.0 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1585935.5 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,237447.38 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,302562.25 +,10037,10.9,ADHD-Combined,Male,91,85,100,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,602.49084 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,732.0 +,10037,10.9,ADHD-Combined,Male,91,85,100,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,900.41125 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1513.9 +,10037,10.9,ADHD-Combined,Male,91,85,100,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4079.1157 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3746.2 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63914.7 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15950.2 +,10037,10.9,ADHD-Combined,Male,91,85,100,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3576.375 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3597.8 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,483.3 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6976.7 +,10037,10.9,ADHD-Combined,Male,91,85,100,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2032.2428 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2292.6 +,10037,10.9,ADHD-Combined,Male,91,85,100,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5919.8384 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5785.2 +,10037,10.9,ADHD-Combined,Male,91,85,100,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8763.382 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7659.5 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4565.5 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,464.7 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.3 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1700679.0 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,246.0 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,237959.02 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,301195.66 +,10037,10.9,ADHD-Combined,Male,91,85,100,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,424.27057 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,766.8 +,10037,10.9,ADHD-Combined,Male,91,85,100,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,678.3009 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1750.2 +,10037,10.9,ADHD-Combined,Male,91,85,100,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4125.6655 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4040.5 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60287.5 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13908.0 +,10037,10.9,ADHD-Combined,Male,91,85,100,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3729.3252 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3669.2 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,454.5 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5990.1 +,10037,10.9,ADHD-Combined,Male,91,85,100,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2026.9229 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2222.6 +,10037,10.9,ADHD-Combined,Male,91,85,100,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5546.1074 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5665.1 +,10037,10.9,ADHD-Combined,Male,91,85,100,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8492.062 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7792.0 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4432.9 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,549.8 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,7.1 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62273.0 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1144731.2 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1158947.2 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1141102.0 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,475406.4 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,603757.9 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,791317.9 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14216.0 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1021.6 +,10037,10.9,ADHD-Combined,Male,91,85,100,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,190666.4 +,10037,10.9,ADHD-Combined,Male,91,85,100,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,723917.3 +,10037,10.9,ADHD-Combined,Male,91,85,100,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10037,10.9,ADHD-Combined,Male,91,85,100,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,507411.66 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,793.1 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1430.7 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10038,12.79,Typically Developing Children,Female,140,129,142,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1109666E7 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1199751.0 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1181573.0 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1181600.6 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17520.1 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,916.0 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,437.3 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,497.6 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,500.8 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,725.6 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,835.0 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1454628.2 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,208305.17 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,283871.34 +,10038,12.79,Typically Developing Children,Female,140,129,142,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,559.9308 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,785.3 +,10038,12.79,Typically Developing Children,Female,140,129,142,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,570.5708 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1328.8 +,10038,12.79,Typically Developing Children,Female,140,129,142,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3612.285 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3568.5 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52736.8 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12790.9 +,10038,12.79,Typically Developing Children,Female,140,129,142,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4132.316 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4009.4 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,395.9 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6890.9 +,10038,12.79,Typically Developing Children,Female,140,129,142,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1678.4623 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1820.7 +,10038,12.79,Typically Developing Children,Female,140,129,142,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5515.5176 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5892.7 +,10038,12.79,Typically Developing Children,Female,140,129,142,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7311.02 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7200.0 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3755.1 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,526.0 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,8.1 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1566552.0 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,117.8 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,210455.78 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,290301.34 +,10038,12.79,Typically Developing Children,Female,140,129,142,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,381.7105 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,595.6 +,10038,12.79,Typically Developing Children,Female,140,129,142,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,662.34094 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1648.4 +,10038,12.79,Typically Developing Children,Female,140,129,142,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3797.1553 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3858.2 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,51521.1 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12611.0 +,10038,12.79,Typically Developing Children,Female,140,129,142,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4337.1357 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4375.7 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,287.2 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7103.8 +,10038,12.79,Typically Developing Children,Female,140,129,142,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1815.4525 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1630.5 +,10038,12.79,Typically Developing Children,Female,140,129,142,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5691.0776 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5899.8 +,10038,12.79,Typically Developing Children,Female,140,129,142,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7132.8 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7163.5 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3625.4 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,595.1 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.4 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59015.0 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1054810.6 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1070171.6 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1051807.0 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,418760.94 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,574172.7 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,738254.7 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15361.0 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,746.5 +,10038,12.79,Typically Developing Children,Female,140,129,142,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,151481.89 +,10038,12.79,Typically Developing Children,Female,140,129,142,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,707450.56 +,10038,12.79,Typically Developing Children,Female,140,129,142,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10038,12.79,Typically Developing Children,Female,140,129,142,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,489193.28 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,647.0 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1011.1 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10039,13.28,Typically Developing Children,Male,87,86,93,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1113616E7 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1197110.0 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1187008.0 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1186935.2 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20244.9 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,772.4 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,561.5 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,615.5 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,514.8 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,768.1 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,608.9 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1484998.8 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,208082.98 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,281693.16 +,10039,13.28,Typically Developing Children,Male,87,86,93,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,513.37775 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,740.4 +,10039,13.28,Typically Developing Children,Male,87,86,93,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,688.937 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1509.9 +,10039,13.28,Typically Developing Children,Male,87,86,93,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3555.0745 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3218.1 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58249.2 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15047.3 +,10039,13.28,Typically Developing Children,Male,87,86,93,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2327.4897 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3249.5 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,349.7 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3773.3 +,10039,13.28,Typically Developing Children,Male,87,86,93,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1790.1722 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1789.7 +,10039,13.28,Typically Developing Children,Male,87,86,93,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5052.648 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5328.3 +,10039,13.28,Typically Developing Children,Male,87,86,93,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6971.8296 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8107.3 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4409.2 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,304.2 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,12.6 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1525952.0 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,138.9 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,212147.39 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,281855.75 +,10039,13.28,Typically Developing Children,Male,87,86,93,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,321.85858 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,648.1 +,10039,13.28,Typically Developing Children,Male,87,86,93,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,502.7378 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1698.4 +,10039,13.28,Typically Developing Children,Male,87,86,93,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3650.834 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3269.0 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57641.9 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13195.5 +,10039,13.28,Typically Developing Children,Male,87,86,93,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2765.0579 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3538.0 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,624.4 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3408.6 +,10039,13.28,Typically Developing Children,Male,87,86,93,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1786.1823 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1764.2 +,10039,13.28,Typically Developing Children,Male,87,86,93,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5341.257 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5423.4 +,10039,13.28,Typically Developing Children,Male,87,86,93,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7916.1255 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7655.3 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4377.7 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,290.0 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58820.0 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1045827.3 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1053903.2 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1042536.0 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,420230.38 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,563548.94 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,739286.94 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8076.0 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1713.8 +,10039,13.28,Typically Developing Children,Male,87,86,93,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,154331.2 +,10039,13.28,Typically Developing Children,Male,87,86,93,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,719743.6 +,10039,13.28,Typically Developing Children,Male,87,86,93,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10039,13.28,Typically Developing Children,Male,87,86,93,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,495211.38 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,652.9 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1413.8 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10040,9.94,ADHD-Combined,Male,133,117,141,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1106369E7 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1228663.0 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1217368.0 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1217448.9 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20565.5 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,898.5 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,610.8 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,818.8 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,476.1 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,748.0 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,645.0 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1485888.0 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,214527.62 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,284278.12 +,10040,9.94,ADHD-Combined,Male,133,117,141,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,690.27094 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,1010.0 +,10040,9.94,ADHD-Combined,Male,133,117,141,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,801.9911 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1599.2 +,10040,9.94,ADHD-Combined,Male,133,117,141,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4373.046 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4136.4 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60528.3 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15003.5 +,10040,9.94,ADHD-Combined,Male,133,117,141,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3222.5945 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3872.1 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,427.1 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3996.1 +,10040,9.94,ADHD-Combined,Male,133,117,141,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2012.2927 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2120.8 +,10040,9.94,ADHD-Combined,Male,133,117,141,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6360.069 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6470.3 +,10040,9.94,ADHD-Combined,Male,133,117,141,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8050.501 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8156.4 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4608.4 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,387.0 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,8.0 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1620313.0 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,157.8 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,217074.52 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,285545.53 +,10040,9.94,ADHD-Combined,Male,133,117,141,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,528.01074 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,836.9 +,10040,9.94,ADHD-Combined,Male,133,117,141,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,634.4109 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1816.3 +,10040,9.94,ADHD-Combined,Male,133,117,141,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4333.146 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4187.4 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61155.7 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14132.5 +,10040,9.94,ADHD-Combined,Male,133,117,141,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3444.7048 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3544.8 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,555.7 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3663.7 +,10040,9.94,ADHD-Combined,Male,133,117,141,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1936.4827 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1906.3 +,10040,9.94,ADHD-Combined,Male,133,117,141,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6414.5986 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6502.4 +,10040,9.94,ADHD-Combined,Male,133,117,141,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7692.7305 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8008.7 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4562.6 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,460.2 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.6 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65614.0 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1070046.9 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1078826.9 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1066832.0 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,431602.16 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,569823.7 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,757175.7 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8780.0 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,875.5 +,10040,9.94,ADHD-Combined,Male,133,117,141,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,166651.89 +,10040,9.94,ADHD-Combined,Male,133,117,141,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,736045.6 +,10040,9.94,ADHD-Combined,Male,133,117,141,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10040,9.94,ADHD-Combined,Male,133,117,141,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,507913.06 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,909.2 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2644.3 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1105607E7 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1241262.0 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1222995.0 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1223178.8 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20400.5 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1094.3 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,592.1 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,553.2 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,518.4 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,822.6 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,832.5 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1487701.0 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,217572.58 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,279138.34 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,598.50085 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,685.3 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,912.3812 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1296.5 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4752.0967 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4545.8 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,67787.9 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15503.1 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3073.6343 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3723.3 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,331.8 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6943.9 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1988.3528 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2201.8 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5625.9077 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5495.0 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8746.092 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7967.0 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4605.6 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,562.9 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,2.3 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1605134.0 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,96.4 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,220235.84 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,281659.03 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,525.3507 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,559.3 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,779.3811 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1574.5 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4944.947 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4844.9 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64795.9 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14306.1 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3035.0642 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3840.0 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,237.9 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6070.1 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1985.6927 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2004.3 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5722.998 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5669.4 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8566.542 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7795.3 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4535.0 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,551.1 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,8.5 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63365.0 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1064341.8 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1078466.8 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1061700.0 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,437808.4 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,560797.4 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,756398.4 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14125.0 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1004.1 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,155453.28 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,728493.9 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10041,9.22,ADHD-Hyperactive/Impulsive,Male,105,99,109,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,484042.2 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,688.0 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2506.5 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10042,10.65,ADHD-Combined,Male,108,115,100,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1113963E7 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1374112.0 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1360088.0 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1359821.5 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20736.0 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1086.3 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,744.3 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,919.2 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,773.8 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1036.8 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,762.0 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1599175.0 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,263301.9 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,315380.72 +,10042,10.65,ADHD-Combined,Male,108,115,100,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,324.52045 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,920.9 +,10042,10.65,ADHD-Combined,Male,108,115,100,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,263.34036 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1420.9 +,10042,10.65,ADHD-Combined,Male,108,115,100,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3705.385 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3639.8 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63260.9 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13285.9 +,10042,10.65,ADHD-Combined,Male,108,115,100,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,1835.4026 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3569.0 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,416.8 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5184.6 +,10042,10.65,ADHD-Combined,Male,108,115,100,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1613.2922 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2224.9 +,10042,10.65,ADHD-Combined,Male,108,115,100,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5014.107 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5560.2 +,10042,10.65,ADHD-Combined,Male,108,115,100,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7841.691 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8319.4 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4518.6 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,351.2 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1705261.0 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,118.4 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,257741.22 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,308735.72 +,10042,10.65,ADHD-Combined,Male,108,115,100,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,614.4608 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,654.4 +,10042,10.65,ADHD-Combined,Male,108,115,100,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,347.1305 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1681.9 +,10042,10.65,ADHD-Combined,Male,108,115,100,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3706.715 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3845.4 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62631.8 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13456.3 +,10042,10.65,ADHD-Combined,Male,108,115,100,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3027.0842 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4034.4 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,584.8 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3829.2 +,10042,10.65,ADHD-Combined,Male,108,115,100,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1779.5425 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1993.0 +,10042,10.65,ADHD-Combined,Male,108,115,100,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5502.218 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5814.5 +,10042,10.65,ADHD-Combined,Male,108,115,100,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7325.65 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8129.7 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4092.2 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,507.7 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62860.0 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1210846.5 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1221195.5 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1208175.0 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,521043.12 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,624116.44 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,812999.44 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10349.0 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,974.7 +,10042,10.65,ADHD-Combined,Male,108,115,100,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,145389.16 +,10042,10.65,ADHD-Combined,Male,108,115,100,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,782958.75 +,10042,10.65,ADHD-Combined,Male,108,115,100,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10042,10.65,ADHD-Combined,Male,108,115,100,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,576143.5 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1015.3 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1173.7 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10043,8.16,Typically Developing Children,Female,112,99,125,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1122603E7 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,937890.0 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,922902.0 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,922220.4 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,13938.8 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,655.9 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,391.9 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,422.8 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,348.3 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,575.8 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1073.3 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1261703.0 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,145090.3 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,227536.56 +,10043,8.16,Typically Developing Children,Female,112,99,125,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,275.31036 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,388.1 +,10043,8.16,Typically Developing Children,Female,112,99,125,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,563.9208 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1079.0 +,10043,8.16,Typically Developing Children,Female,112,99,125,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3005.8042 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3030.8 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56993.6 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11792.7 +,10043,8.16,Typically Developing Children,Female,112,99,125,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,1691.7623 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3259.4 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,369.2 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5973.5 +,10043,8.16,Typically Developing Children,Female,112,99,125,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,759.431 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1485.9 +,10043,8.16,Typically Developing Children,Female,112,99,125,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4091.0857 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4833.4 +,10043,8.16,Typically Developing Children,Female,112,99,125,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6277.6084 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6730.1 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3446.6 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,525.4 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,5.2 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1371830.0 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,150.7 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,140001.23 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,222629.28 +,10043,8.16,Typically Developing Children,Female,112,99,125,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,215.4603 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,442.9 +,10043,8.16,Typically Developing Children,Female,112,99,125,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,726.181 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1269.4 +,10043,8.16,Typically Developing Children,Female,112,99,125,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3118.8542 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3039.0 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57168.4 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11041.6 +,10043,8.16,Typically Developing Children,Female,112,99,125,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3088.2642 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3332.2 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,420.7 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4564.5 +,10043,8.16,Typically Developing Children,Female,112,99,125,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,960.26135 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1363.5 +,10043,8.16,Typically Developing Children,Female,112,99,125,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,3541.795 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4674.1 +,10043,8.16,Typically Developing Children,Female,112,99,125,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,5945.1084 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6466.3 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3531.9 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,490.7 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,3.4 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,50311.0 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,788110.4 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,799929.4 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,786107.0 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,285091.53 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,450165.84 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,614797.9 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11819.0 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1659.9 +,10043,8.16,Typically Developing Children,Female,112,99,125,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,178680.42 +,10043,8.16,Typically Developing Children,Female,112,99,125,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,639660.4 +,10043,8.16,Typically Developing Children,Female,112,99,125,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10043,8.16,Typically Developing Children,Female,112,99,125,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,407866.34 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,732.2 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1702.5 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10044,9.81,ADHD-Combined,Female,108,119,98,http://purl.org/nidash/fsl#,Background (mm^3),,,1.111654E7 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1124976.0 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1115710.0 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1115489.4 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16708.4 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,672.7 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,556.6 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,536.3 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,432.8 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,878.7 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,645.5 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1369313.4 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,190142.83 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,274144.53 +,10044,9.81,ADHD-Combined,Female,108,119,98,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,525.3507 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,602.4 +,10044,9.81,ADHD-Combined,Female,108,119,98,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,453.53064 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1415.7 +,10044,9.81,ADHD-Combined,Female,108,119,98,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3142.7944 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3865.7 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,49530.4 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13066.2 +,10044,9.81,ADHD-Combined,Female,108,119,98,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3332.9846 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3546.7 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,647.2 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2851.4 +,10044,9.81,ADHD-Combined,Female,108,119,98,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1621.2722 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1897.7 +,10044,9.81,ADHD-Combined,Female,108,119,98,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5449.0176 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5566.5 +,10044,9.81,ADHD-Combined,Female,108,119,98,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7074.28 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7108.3 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3730.9 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,303.7 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,56.4 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1486837.0 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,107.4 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,190096.05 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,275396.94 +,10044,9.81,ADHD-Combined,Female,108,119,98,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,327.18045 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,504.8 +,10044,9.81,ADHD-Combined,Female,108,119,98,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,413.63055 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1471.9 +,10044,9.81,ADHD-Combined,Female,108,119,98,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2388.6833 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3812.8 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,51400.3 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13218.3 +,10044,9.81,ADHD-Combined,Female,108,119,98,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2826.254 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3547.4 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,394.1 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2232.2 +,10044,9.81,ADHD-Combined,Female,108,119,98,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1520.1921 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1887.3 +,10044,9.81,ADHD-Combined,Female,108,119,98,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4543.286 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5784.7 +,10044,9.81,ADHD-Combined,Female,108,119,98,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6705.869 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7121.7 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3799.6 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,362.7 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57398.0 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,990806.4 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,997157.4 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,987322.0 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,380238.88 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,549541.5 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,709559.5 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6351.0 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1438.8 +,10044,9.81,ADHD-Combined,Female,108,119,98,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,157973.62 +,10044,9.81,ADHD-Combined,Female,108,119,98,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,669534.9 +,10044,9.81,ADHD-Combined,Female,108,119,98,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10044,9.81,ADHD-Combined,Female,108,119,98,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,422213.06 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1089.5 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1931.6 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10045,12.49,Typically Developing Children,Male,126,137,109,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1112797E7 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1079552.0 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1061225.0 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1060545.8 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16507.0 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,792.5 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,448.2 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,421.2 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,492.8 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,912.9 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,998.6 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1364650.4 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,180931.84 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,248822.06 +,10045,12.49,Typically Developing Children,Male,126,137,109,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,303.24042 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,468.5 +,10045,12.49,Typically Developing Children,Male,126,137,109,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,799.3311 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1323.9 +,10045,12.49,Typically Developing Children,Male,126,137,109,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3398.1548 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3476.6 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53970.8 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14057.0 +,10045,12.49,Typically Developing Children,Male,126,137,109,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4164.236 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3968.6 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,430.6 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6823.0 +,10045,12.49,Typically Developing Children,Male,126,137,109,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1603.9822 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1717.6 +,10045,12.49,Typically Developing Children,Male,126,137,109,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5129.817 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5580.4 +,10045,12.49,Typically Developing Children,Male,126,137,109,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6905.3696 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6532.1 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3500.9 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,543.0 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,10.5 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1423817.0 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,110.4 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,182723.92 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,258681.98 +,10045,12.49,Typically Developing Children,Male,126,137,109,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,372.4005 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,441.4 +,10045,12.49,Typically Developing Children,Male,126,137,109,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,803.3211 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1580.2 +,10045,12.49,Typically Developing Children,Male,126,137,109,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3392.8347 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3622.3 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,52292.4 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12873.8 +,10045,12.49,Typically Developing Children,Male,126,137,109,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3833.0652 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4119.7 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,432.8 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5860.0 +,10045,12.49,Typically Developing Children,Male,126,137,109,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1674.4723 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1691.5 +,10045,12.49,Typically Developing Children,Male,126,137,109,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5282.767 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5737.5 +,10045,12.49,Typically Developing Children,Male,126,137,109,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6403.959 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6484.7 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3590.4 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,882.1 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,2.6 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55630.0 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,930603.8 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,945163.8 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,927365.0 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,363655.75 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,507504.06 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,670545.06 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14560.0 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1257.6 +,10045,12.49,Typically Developing Children,Male,126,137,109,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,175929.98 +,10045,12.49,Typically Developing Children,Male,126,137,109,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,619381.9 +,10045,12.49,Typically Developing Children,Male,126,137,109,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10045,12.49,Typically Developing Children,Male,126,137,109,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,403370.94 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1436.5 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1737.6 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10046,9.75,Typically Developing Children,Male,124,109,133,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1102823E7 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1024529.0 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1006880.0 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1005659.94 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21799.1 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1061.5 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,575.9 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,906.5 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,665.8 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,965.6 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1277.1 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1778356.9 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,166696.55 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,201316.38 +,10046,9.75,Typically Developing Children,Male,124,109,133,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,458.85065 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,882.6 +,10046,9.75,Typically Developing Children,Male,124,109,133,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1165.0815 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,2041.5 +,10046,9.75,Typically Developing Children,Male,124,109,133,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3654.845 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3680.2 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,67892.6 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14627.8 +,10046,9.75,Typically Developing Children,Male,124,109,133,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3101.5642 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,5242.8 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,407.4 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6769.2 +,10046,9.75,Typically Developing Children,Male,124,109,133,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1747.6224 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1811.5 +,10046,9.75,Typically Developing Children,Male,124,109,133,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6580.849 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,7013.3 +,10046,9.75,Typically Developing Children,Male,124,109,133,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9411.093 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8943.3 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,5778.1 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,378.4 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,9.8 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1878705.0 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,182.5 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,184012.92 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,218817.1 +,10046,9.75,Typically Developing Children,Male,124,109,133,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,425.6006 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,616.0 +,10046,9.75,Typically Developing Children,Male,124,109,133,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1071.9814 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2031.8 +,10046,9.75,Typically Developing Children,Male,124,109,133,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3927.4954 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4796.2 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,66208.4 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14788.0 +,10046,9.75,Typically Developing Children,Male,124,109,133,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,5343.9473 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,5058.7 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,452.8 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4728.4 +,10046,9.75,Typically Developing Children,Male,124,109,133,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1916.5326 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2050.0 +,10046,9.75,Typically Developing Children,Male,124,109,133,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6066.138 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,7443.8 +,10046,9.75,Typically Developing Children,Male,124,109,133,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9169.032 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8151.9 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4701.0 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,407.7 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.6 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,72468.0 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,845582.94 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,858694.94 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,844356.0 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,350709.47 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,420133.47 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,626584.5 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13112.0 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,4341.9 +,10046,9.75,Typically Developing Children,Male,124,109,133,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,286584.8 +,10046,9.75,Typically Developing Children,Male,124,109,133,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,811823.8 +,10046,9.75,Typically Developing Children,Male,124,109,133,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10046,9.75,Typically Developing Children,Male,124,109,133,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,614944.94 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,913.7 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1107.7 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10047,12.72,ADHD-Combined,Male,122,131,109,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1134294E7 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1143760.0 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1132178.0 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1131705.6 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17191.4 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,968.7 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,580.4 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,610.1 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,548.8 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,822.0 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,910.9 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1307625.8 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,220407.66 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,275680.53 +,10047,12.72,ADHD-Combined,Male,122,131,109,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,285.95038 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,764.3 +,10047,12.72,ADHD-Combined,Male,122,131,109,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,547.96075 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1724.2 +,10047,12.72,ADHD-Combined,Male,122,131,109,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2214.4531 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3636.3 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,34966.5 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10841.9 +,10047,12.72,ADHD-Combined,Male,122,131,109,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,1165.0815 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3572.6 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,320.4 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3515.7 +,10047,12.72,ADHD-Combined,Male,122,131,109,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1054.6914 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1874.1 +,10047,12.72,ADHD-Combined,Male,122,131,109,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,1647.8723 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5597.0 +,10047,12.72,ADHD-Combined,Male,122,131,109,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,4813.277 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7285.1 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4348.0 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,367.0 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,13.1 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1566099.0 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,176.3 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,216994.08 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,269913.38 +,10047,12.72,ADHD-Combined,Male,122,131,109,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,234.08032 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,740.0 +,10047,12.72,ADHD-Combined,Male,122,131,109,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,263.34036 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1932.4 +,10047,12.72,ADHD-Combined,Male,122,131,109,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2154.603 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3739.9 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,33245.1 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,8811.4 +,10047,12.72,ADHD-Combined,Male,122,131,109,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,978.88135 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3848.9 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,420.8 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4407.8 +,10047,12.72,ADHD-Combined,Male,122,131,109,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1034.7415 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1905.4 +,10047,12.72,ADHD-Combined,Male,122,131,109,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,1752.9424 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5656.7 +,10047,12.72,ADHD-Combined,Male,122,131,109,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,4422.256 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6920.5 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4263.2 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,498.7 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,5.6 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59856.0 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1045325.6 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1054185.6 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1043162.0 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,437401.75 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,545593.9 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,675382.9 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8860.0 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1167.6 +,10047,12.72,ADHD-Combined,Male,122,131,109,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,203358.61 +,10047,12.72,ADHD-Combined,Male,122,131,109,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,626311.2 +,10047,12.72,ADHD-Combined,Male,122,131,109,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10047,12.72,ADHD-Combined,Male,122,131,109,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,458228.2 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,864.6 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1222.0 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10048,14.95,ADHD-Combined,Male,118,111,120,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1112938E7 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1194626.0 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1174669.0 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1174942.1 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17880.9 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,973.6 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,382.0 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,443.4 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,485.5 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,864.8 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1098.9 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1564288.2 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,200658.3 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,287992.72 +,10048,14.95,ADHD-Combined,Male,118,111,120,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,504.07068 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,644.8 +,10048,14.95,ADHD-Combined,Male,118,111,120,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1036.0714 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1430.7 +,10048,14.95,ADHD-Combined,Male,118,111,120,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3317.0247 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3451.6 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54455.1 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12028.9 +,10048,14.95,ADHD-Combined,Male,118,111,120,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3350.2747 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3644.8 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,502.6 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8016.1 +,10048,14.95,ADHD-Combined,Male,118,111,120,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1686.4424 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1880.4 +,10048,14.95,ADHD-Combined,Male,118,111,120,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4415.606 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4616.7 +,10048,14.95,ADHD-Combined,Male,118,111,120,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8222.071 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7568.0 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3770.0 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,331.8 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,10.6 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1550457.0 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,144.6 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,201498.4 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,293415.75 +,10048,14.95,ADHD-Combined,Male,118,111,120,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,461.51062 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,565.9 +,10048,14.95,ADHD-Combined,Male,118,111,120,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,482.79065 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1652.5 +,10048,14.95,ADHD-Combined,Male,118,111,120,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3645.535 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3668.1 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55363.7 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12674.0 +,10048,14.95,ADHD-Combined,Male,118,111,120,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3149.4443 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3726.8 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,567.9 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7294.9 +,10048,14.95,ADHD-Combined,Male,118,111,120,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1599.9922 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1610.6 +,10048,14.95,ADHD-Combined,Male,118,111,120,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4286.5957 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4708.0 +,10048,14.95,ADHD-Combined,Male,118,111,120,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7768.5405 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7284.9 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3733.0 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,633.9 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,27.1 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56073.0 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1043059.2 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1059985.1 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1039231.0 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,402156.7 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,581408.44 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,748618.44 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,16926.0 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1236.7 +,10048,14.95,ADHD-Combined,Male,118,111,120,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,189968.16 +,10048,14.95,ADHD-Combined,Male,118,111,120,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,716158.1 +,10048,14.95,ADHD-Combined,Male,118,111,120,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,1.8 +,10048,14.95,ADHD-Combined,Male,118,111,120,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,465766.66 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,850.1 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1815.1 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10049,7.35,ADHD-Combined,Male,106,96,115,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1111085E7 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1200988.0 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1183353.0 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1183174.2 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15451.6 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,936.9 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,586.6 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,715.0 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,548.4 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,929.7 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,927.2 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1420024.8 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,207681.77 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,293109.12 +,10049,7.35,ADHD-Combined,Male,106,96,115,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,526.6807 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,625.0 +,10049,7.35,ADHD-Combined,Male,106,96,115,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,518.7007 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1615.5 +,10049,7.35,ADHD-Combined,Male,106,96,115,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3661.495 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3646.8 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53006.8 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10565.0 +,10049,7.35,ADHD-Combined,Male,106,96,115,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3640.215 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4010.9 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,337.2 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6738.7 +,10049,7.35,ADHD-Combined,Male,106,96,115,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1670.4823 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1661.3 +,10049,7.35,ADHD-Combined,Male,106,96,115,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5522.1675 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5556.2 +,10049,7.35,ADHD-Combined,Male,106,96,115,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7535.7905 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7162.6 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3536.7 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,545.1 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,37.2 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1560533.0 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,128.3 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,205898.52 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,293091.78 +,10049,7.35,ADHD-Combined,Male,106,96,115,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,445.5506 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,628.4 +,10049,7.35,ADHD-Combined,Male,106,96,115,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,545.3008 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1924.5 +,10049,7.35,ADHD-Combined,Male,106,96,115,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3793.1653 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3869.6 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,50923.5 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10942.1 +,10049,7.35,ADHD-Combined,Male,106,96,115,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3769.225 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4018.3 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,512.8 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6217.2 +,10049,7.35,ADHD-Combined,Male,106,96,115,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1565.4121 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1609.0 +,10049,7.35,ADHD-Combined,Male,106,96,115,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5212.2773 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5501.2 +,10049,7.35,ADHD-Combined,Male,106,96,115,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7372.2 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7186.3 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3597.7 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,430.7 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,11.6 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58020.0 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1060827.2 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1075175.2 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1057879.0 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,413580.28 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,586200.94 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,748607.94 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14348.0 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,771.4 +,10049,7.35,ADHD-Combined,Male,106,96,115,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,169633.75 +,10049,7.35,ADHD-Combined,Male,106,96,115,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,716926.9 +,10049,7.35,ADHD-Combined,Male,106,96,115,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10049,7.35,ADHD-Combined,Male,106,96,115,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,468385.4 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,859.1 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1547.6 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10050,17.43,ADHD-Combined,Male,109,97,119,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1113128E7 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1195659.0 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1173983.0 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1174341.0 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19524.2 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,913.9 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,457.3 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,483.5 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,512.4 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,817.2 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,721.3 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1522812.2 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,218149.81 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,268402.53 +,10050,17.43,ADHD-Combined,Male,109,97,119,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,433.5806 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,613.8 +,10050,17.43,ADHD-Combined,Male,109,97,119,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,970.90137 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1770.5 +,10050,17.43,ADHD-Combined,Male,109,97,119,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4055.1755 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4047.4 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57345.2 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13577.3 +,10050,17.43,ADHD-Combined,Male,109,97,119,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2799.6538 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3304.6 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,218.8 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7241.5 +,10050,17.43,ADHD-Combined,Male,109,97,119,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1912.5426 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1998.5 +,10050,17.43,ADHD-Combined,Male,109,97,119,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4531.3164 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4954.0 +,10050,17.43,ADHD-Combined,Male,109,97,119,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6757.7393 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7849.4 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4159.3 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,250.5 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,15.4 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1602622.0 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,156.6 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,221121.38 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,266976.3 +,10050,17.43,ADHD-Combined,Male,109,97,119,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,510.7207 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,608.7 +,10050,17.43,ADHD-Combined,Male,109,97,119,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1335.3218 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1765.9 +,10050,17.43,ADHD-Combined,Male,109,97,119,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4297.236 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4189.6 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55821.5 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12664.6 +,10050,17.43,ADHD-Combined,Male,109,97,119,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,1871.3126 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3446.8 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,471.2 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,10781.5 +,10050,17.43,ADHD-Combined,Male,109,97,119,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1778.2124 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1788.4 +,10050,17.43,ADHD-Combined,Male,109,97,119,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5289.4175 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5204.8 +,10050,17.43,ADHD-Combined,Male,109,97,119,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7192.65 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7792.5 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4149.6 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,357.2 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,8.1 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59993.0 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1038011.06 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1056787.0 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1034160.0 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,439271.2 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,535378.9 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,709905.9 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,18776.0 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1328.4 +,10050,17.43,ADHD-Combined,Male,109,97,119,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,196818.98 +,10050,17.43,ADHD-Combined,Male,109,97,119,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,662698.7 +,10050,17.43,ADHD-Combined,Male,109,97,119,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10050,17.43,ADHD-Combined,Male,109,97,119,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,502869.7 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,814.4 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2465.2 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1104695E7 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1297880.0 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1285423.0 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1285626.6 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21038.1 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1028.9 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,659.6 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,693.6 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,563.2 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,968.1 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,816.5 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1653525.4 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,236969.34 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,293755.2 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,514.7107 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,679.6 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1062.6715 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1615.7 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3616.275 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3520.9 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,68381.1 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14632.1 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3872.9653 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4003.3 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,350.9 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4271.7 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1903.2327 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2178.0 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6292.239 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6133.7 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8497.382 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8293.2 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4547.3 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,399.0 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,43.8 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1706505.0 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,153.4 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,234465.36 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,291806.66 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,458.85065 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,666.5 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1349.9519 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1789.2 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3855.6753 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3753.2 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,67743.8 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14498.1 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4044.5356 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4233.2 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,345.5 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3215.5 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2102.733 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2014.1 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6007.618 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6075.3 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8590.481 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8116.1 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4355.2 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,542.9 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,24.9 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64051.0 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1123533.6 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1132166.6 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1120753.0 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,471434.72 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,585561.9 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,786141.9 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8633.0 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,913.9 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,198829.95 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,753761.25 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10051,15.4,ADHD-Inattentive,Male,107,102,109,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,556194.8 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,958.1 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1555.4 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10052,16.31,Typically Developing Children,Male,81,83,83,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1111024E7 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1131445.0 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1120217.0 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1121056.5 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17122.3 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,695.9 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,520.2 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,487.7 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,460.7 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,689.5 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,929.4 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1410787.2 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,212704.8 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,252367.48 +,10052,16.31,Typically Developing Children,Male,81,83,83,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,513.37775 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,600.3 +,10052,16.31,Typically Developing Children,Male,81,83,83,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,764.74664 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1428.1 +,10052,16.31,Typically Developing Children,Male,81,83,83,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3481.9248 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2998.2 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,51275.3 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15620.6 +,10052,16.31,Typically Developing Children,Male,81,83,83,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4217.4116 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3946.3 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,260.6 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3888.0 +,10052,16.31,Typically Developing Children,Male,81,83,83,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1677.1227 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1938.8 +,10052,16.31,Typically Developing Children,Male,81,83,83,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4580.5 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4965.5 +,10052,16.31,Typically Developing Children,Male,81,83,83,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7740.5664 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7220.9 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4042.2 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,270.1 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,41.7 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1517807.0 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,175.1 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,214286.17 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,256661.08 +,10052,16.31,Typically Developing Children,Male,81,83,83,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,265.99884 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,733.5 +,10052,16.31,Typically Developing Children,Male,81,83,83,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1155.765 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1817.1 +,10052,16.31,Typically Developing Children,Male,81,83,83,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3336.9556 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3021.0 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,48192.1 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12502.3 +,10052,16.31,Typically Developing Children,Male,81,83,83,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3962.0527 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4064.3 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,293.2 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3464.8 +,10052,16.31,Typically Developing Children,Male,81,83,83,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1610.6229 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1804.2 +,10052,16.31,Typically Developing Children,Male,81,83,83,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4793.2993 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5210.9 +,10052,16.31,Typically Developing Children,Male,81,83,83,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7675.3965 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6996.1 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3826.7 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,350.3 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,20.7 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56369.0 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,995670.5 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1003685.5 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,991445.0 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,426990.97 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,509028.56 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,666707.56 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8015.0 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1143.7 +,10052,16.31,Typically Developing Children,Male,81,83,83,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,196779.3 +,10052,16.31,Typically Developing Children,Male,81,83,83,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,608213.0 +,10052,16.31,Typically Developing Children,Male,81,83,83,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10052,16.31,Typically Developing Children,Male,81,83,83,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,480392.56 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,694.4 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1347.2 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10053,15.28,Typically Developing Children,Female,101,103,99,http://purl.org/nidash/fsl#,Background (mm^3),,,1.111369E7 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1029497.0 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1020384.0 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1020304.7 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17661.7 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,726.1 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,714.1 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,604.6 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,490.5 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,862.0 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,860.4 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1256290.9 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,193801.95 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,233344.11 +,10053,15.28,Typically Developing Children,Female,101,103,99,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,465.498 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,605.3 +,10053,15.28,Typically Developing Children,Female,101,103,99,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,851.1963 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1311.3 +,10053,15.28,Typically Developing Children,Female,101,103,99,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3572.3645 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3056.1 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,47930.9 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12940.2 +,10053,15.28,Typically Developing Children,Female,101,103,99,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3415.425 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3399.3 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,194.6 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2733.0 +,10053,15.28,Typically Developing Children,Female,101,103,99,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1525.5033 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1689.2 +,10053,15.28,Typically Developing Children,Female,101,103,99,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4926.2983 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4818.9 +,10053,15.28,Typically Developing Children,Female,101,103,99,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7070.249 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,5968.3 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3308.3 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,308.9 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,54.2 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1373165.0 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,119.2 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,190416.84 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,231050.78 +,10053,15.28,Typically Developing Children,Female,101,103,99,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,385.6983 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,581.7 +,10053,15.28,Typically Developing Children,Female,101,103,99,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,623.7673 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1494.9 +,10053,15.28,Typically Developing Children,Female,101,103,99,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3621.5742 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3089.7 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,48897.8 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12912.0 +,10053,15.28,Typically Developing Children,Female,101,103,99,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3234.546 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3218.3 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,273.1 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2726.4 +,10053,15.28,Typically Developing Children,Female,101,103,99,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1488.2635 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1607.3 +,10053,15.28,Typically Developing Children,Female,101,103,99,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4616.4097 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4764.8 +,10053,15.28,Typically Developing Children,Female,101,103,99,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7313.638 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,5766.3 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3514.2 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,255.8 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,22.6 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,49563.0 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,900313.7 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,906455.7 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,898189.0 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,384218.78 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,464394.9 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,610881.9 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6142.0 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1192.1 +,10053,15.28,Typically Developing Children,Female,101,103,99,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,169013.0 +,10053,15.28,Typically Developing Children,Female,101,103,99,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,577943.7 +,10053,15.28,Typically Developing Children,Female,101,103,99,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10053,15.28,Typically Developing Children,Female,101,103,99,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,434917.4 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,845.3 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1593.6 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1110714E7 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1053211.0 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1039698.0 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1039704.9 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17015.1 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,897.4 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,564.4 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,495.0 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,491.7 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,685.8 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1120.4 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1291347.8 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,188958.72 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,243552.39 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,513.38074 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,917.0 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1042.7214 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1411.6 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3731.985 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3434.0 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,49617.7 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11284.6 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3340.9646 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3525.2 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,344.9 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4586.8 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1804.8125 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1888.5 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5575.3677 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5444.7 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7394.81 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6476.7 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3657.7 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,429.7 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1390206.0 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,87.4 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,186380.31 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,243798.45 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,361.7605 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,781.4 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1181.0416 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1582.4 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3609.625 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3558.5 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,49705.7 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11934.8 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3350.2747 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3649.3 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,416.6 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4427.4 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1657.1823 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1606.7 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5373.2075 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5260.3 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7212.6 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6434.4 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3240.4 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,455.1 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,10.4 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,54592.0 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,919861.9 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,930053.9 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,917171.0 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,375339.03 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,487350.84 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,641863.8 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10192.0 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,722.2 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,177093.73 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,614637.75 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10054,17.83,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,433379.78 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1114.1 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1595.3 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1109851E7 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1292009.0 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1268316.0 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1268859.5 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17509.2 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,728.1 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,459.6 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,655.4 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,543.1 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,827.2 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,740.4 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1645161.0 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,250389.08 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,279448.88 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,637.07086 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,697.4 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,788.6911 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1664.4 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3549.775 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3461.1 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58613.5 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13690.3 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3870.3054 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3657.8 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,389.3 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,11262.1 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1806.1425 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1772.4 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5196.3174 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5458.5 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7551.7505 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7427.3 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4018.2 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,581.2 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,30.1 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1688457.0 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,145.2 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,251794.9 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,283494.7 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,553.28076 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,737.1 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,825.93115 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1717.6 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3688.095 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3639.1 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58119.7 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13194.8 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4169.5557 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4612.7 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,309.0 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7747.4 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1843.3826 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1707.7 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5141.787 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5248.6 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7390.8203 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7783.9 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3833.4 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,584.6 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,4.2 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59233.0 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1128077.5 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1148480.5 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1123704.0 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,502184.0 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,562943.56 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,740554.56 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,20403.0 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1038.2 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,212675.27 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,703371.44 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10056,15.63,ADHD-Inattentive,Male,-999,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,557253.5 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,817.8 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1390.9 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10057,17.7,Typically Developing Children,Male,102,92,111,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1111234E7 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1184788.0 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1167082.0 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1167507.5 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16450.3 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1019.2 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,543.1 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,651.8 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,353.6 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,649.5 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,879.6 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1375418.2 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,226989.34 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,261572.66 +,10057,17.7,Typically Developing Children,Male,102,92,111,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,493.43066 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,699.9 +,10057,17.7,Typically Developing Children,Male,102,92,111,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,766.08105 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1544.9 +,10057,17.7,Typically Developing Children,Male,102,92,111,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3801.1453 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3954.1 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54361.3 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13944.6 +,10057,17.7,Typically Developing Children,Male,102,92,111,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3850.3552 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3855.8 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,329.3 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6835.2 +,10057,17.7,Typically Developing Children,Male,102,92,111,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1468.322 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1819.5 +,10057,17.7,Typically Developing Children,Male,102,92,111,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5308.037 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5497.7 +,10057,17.7,Typically Developing Children,Male,102,92,111,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6767.0493 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7307.5 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3975.1 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,528.0 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,11.4 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1592279.0 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,139.3 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,225222.1 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,259959.4 +,10057,17.7,Typically Developing Children,Male,102,92,111,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,512.0507 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,585.8 +,10057,17.7,Typically Developing Children,Male,102,92,111,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,655.6909 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1618.5 +,10057,17.7,Typically Developing Children,Male,102,92,111,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3990.0054 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4087.0 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,52764.1 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12901.6 +,10057,17.7,Typically Developing Children,Male,102,92,111,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3420.7646 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3752.7 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,347.4 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6600.3 +,10057,17.7,Typically Developing Children,Male,102,92,111,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1623.9323 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1532.4 +,10057,17.7,Typically Developing Children,Male,102,92,111,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5390.4976 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5511.0 +,10057,17.7,Typically Developing Children,Male,102,92,111,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7582.3403 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6753.8 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3739.4 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,559.7 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,11.9 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58053.0 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1035886.5 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1050687.5 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1031229.0 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,452211.44 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,521532.06 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,689394.06 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14801.0 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,898.7 +,10057,17.7,Typically Developing Children,Male,102,92,111,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,225285.02 +,10057,17.7,Typically Developing Children,Male,102,92,111,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,604300.94 +,10057,17.7,Typically Developing Children,Male,102,92,111,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10057,17.7,Typically Developing Children,Male,102,92,111,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,464046.94 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,764.4 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2026.9 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10058,14.2,Typically Developing Children,Male,109,96,121,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1107856E7 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1307857.0 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1292985.0 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1293486.8 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19733.6 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,809.2 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,510.0 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,558.7 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,552.1 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,807.6 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,920.6 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1668753.2 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,237191.78 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,301453.62 +,10058,14.2,Typically Developing Children,Male,109,96,121,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,658.3509 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,923.2 +,10058,14.2,Typically Developing Children,Male,109,96,121,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,687.61096 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1390.4 +,10058,14.2,Typically Developing Children,Male,109,96,121,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3779.8652 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3842.3 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63270.2 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13419.8 +,10058,14.2,Typically Developing Children,Male,109,96,121,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3242.5444 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4039.3 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,326.2 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4956.1 +,10058,14.2,Typically Developing Children,Male,109,96,121,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1622.6023 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1942.8 +,10058,14.2,Typically Developing Children,Male,109,96,121,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6125.9883 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6165.3 +,10058,14.2,Typically Developing Children,Male,109,96,121,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8656.981 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7655.4 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4146.4 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,449.8 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1681416.0 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,128.7 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,239128.94 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,300226.44 +,10058,14.2,Typically Developing Children,Male,109,96,121,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,397.67053 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,598.7 +,10058,14.2,Typically Developing Children,Male,109,96,121,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,428.2606 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1777.2 +,10058,14.2,Typically Developing Children,Male,109,96,121,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3871.6353 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3968.7 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62671.6 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13746.2 +,10058,14.2,Typically Developing Children,Male,109,96,121,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4367.726 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4399.2 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,678.4 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5018.2 +,10058,14.2,Typically Developing Children,Male,109,96,121,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1760.9224 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1786.0 +,10058,14.2,Typically Developing Children,Male,109,96,121,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5874.618 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6124.9 +,10058,14.2,Typically Developing Children,Male,109,96,121,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7533.1304 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7840.6 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4022.0 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,463.1 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,21.9 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62479.0 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1143454.8 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1154845.8 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1139862.0 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,476320.72 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,601680.06 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,791171.06 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11391.0 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,631.0 +,10058,14.2,Typically Developing Children,Male,109,96,121,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,206553.28 +,10058,14.2,Typically Developing Children,Male,109,96,121,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,737116.25 +,10058,14.2,Typically Developing Children,Male,109,96,121,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10058,14.2,Typically Developing Children,Male,109,96,121,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,542727.2 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,801.0 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1104.4 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10059,17.89,Typically Developing Children,Female,128,124,127,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1136725E7 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1088506.0 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1076946.0 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1076825.5 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15264.3 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1147.4 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,566.3 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,730.6 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,525.9 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,796.2 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,861.6 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,990197.44 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,224488.52 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,246695.34 +,10059,17.89,Typically Developing Children,Female,128,124,127,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,222.1103 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,728.4 +,10059,17.89,Typically Developing Children,Female,128,124,127,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,344.47046 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1550.0 +,10059,17.89,Typically Developing Children,Female,128,124,127,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,1742.3024 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3908.2 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,32786.7 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,8357.9 +,10059,17.89,Typically Developing Children,Female,128,124,127,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,798.0011 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3811.7 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,340.5 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4827.6 +,10059,17.89,Typically Developing Children,Female,128,124,127,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,891.1012 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2001.2 +,10059,17.89,Typically Developing Children,Female,128,124,127,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,2098.743 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5349.0 +,10059,17.89,Typically Developing Children,Female,128,124,127,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,3864.9854 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7092.0 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4260.9 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,363.6 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,36.3 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1500396.0 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,139.2 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,222464.1 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,242159.58 +,10059,17.89,Typically Developing Children,Female,128,124,127,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,35.91005 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,599.5 +,10059,17.89,Typically Developing Children,Female,128,124,127,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,436.2406 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1545.7 +,10059,17.89,Typically Developing Children,Female,128,124,127,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,1665.1624 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3952.1 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,32711.0 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,7274.6 +,10059,17.89,Typically Developing Children,Female,128,124,127,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,1081.2915 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3829.3 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,320.8 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3186.3 +,10059,17.89,Typically Developing Children,Female,128,124,127,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,865.8312 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1884.0 +,10059,17.89,Typically Developing Children,Female,128,124,127,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,2467.1533 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5366.9 +,10059,17.89,Typically Developing Children,Female,128,124,127,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,3625.585 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7235.0 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3836.3 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,531.3 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,73.8 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58986.0 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,997086.5 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1006092.5 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,994887.0 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,446952.6 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,488854.9 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,614842.94 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9006.0 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,785.0 +,10059,17.89,Typically Developing Children,Female,128,124,127,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,211859.98 +,10059,17.89,Typically Developing Children,Female,128,124,127,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,554182.5 +,10059,17.89,Typically Developing Children,Female,128,124,127,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10059,17.89,Typically Developing Children,Female,128,124,127,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,454500.2 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,637.0 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2068.3 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10060,8.75,ADHD-Combined,Male,99,104,93,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1138666E7 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1097441.0 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1086150.0 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1085800.5 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15190.7 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,807.2 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,438.4 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,492.1 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,528.1 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,710.9 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,608.7 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1123437.2 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,176588.33 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,277707.25 +,10060,8.75,ADHD-Combined,Male,99,104,93,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,136.99019 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,592.0 +,10060,8.75,ADHD-Combined,Male,99,104,93,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,642.39087 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1317.3 +,10060,8.75,ADHD-Combined,Male,99,104,93,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2151.9429 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3361.0 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57315.4 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10936.3 +,10060,8.75,ADHD-Combined,Male,99,104,93,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,803.3211 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3369.8 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,473.9 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3669.7 +,10060,8.75,ADHD-Combined,Male,99,104,93,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,526.6807 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1561.6 +,10060,8.75,ADHD-Combined,Male,99,104,93,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,1266.1617 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5398.8 +,10060,8.75,ADHD-Combined,Male,99,104,93,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,3593.665 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6546.9 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3545.0 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,449.2 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,23.6 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1393560.0 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,133.7 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,176032.61 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,269889.34 +,10060,8.75,ADHD-Combined,Male,99,104,93,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,143.6402 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,595.6 +,10060,8.75,ADHD-Combined,Male,99,104,93,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,493.43066 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1529.1 +,10060,8.75,ADHD-Combined,Male,99,104,93,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2307.5532 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3311.6 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55054.6 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,9959.3 +,10060,8.75,ADHD-Combined,Male,99,104,93,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,546.63074 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3464.0 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,513.1 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3073.2 +,10060,8.75,ADHD-Combined,Male,99,104,93,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,774.06104 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1656.8 +,10060,8.75,ADHD-Combined,Male,99,104,93,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,1079.9614 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5344.1 +,10060,8.75,ADHD-Combined,Male,99,104,93,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,3731.985 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6510.1 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3445.8 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,491.3 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.0 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,53425.0 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,956262.5 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,964455.5 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,953877.0 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,352620.94 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,547596.56 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,712777.56 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8193.0 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,890.1 +,10060,8.75,ADHD-Combined,Male,99,104,93,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,122249.78 +,10060,8.75,ADHD-Combined,Male,99,104,93,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,665741.75 +,10060,8.75,ADHD-Combined,Male,99,104,93,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10060,8.75,ADHD-Combined,Male,99,104,93,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,389053.47 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,909.9 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1120.9 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,896358.0 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,878733.0 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,877802.25 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,13080.6 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1021.1 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,490.4 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,715.9 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,519.6 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,912.1 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,765.7 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1006639.8 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,160664.42 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,193071.34 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,686.2 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,768.0 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4518.8 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,36056.1 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,6215.0 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2510.0 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,154.0 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6128.5 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2004.1 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6083.5 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8123.6 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3522.2 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,295.2 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1481210.0 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,102.1 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,166128.52 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,208594.0 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,625.5 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1408.6 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4809.4 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,40315.3 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,5846.7 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3048.0 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,478.0 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7959.0 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1891.6 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6181.9 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7868.7 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3684.8 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,578.7 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.2 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59723.0 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,791640.25 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,806681.25 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,789025.0 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,326792.94 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,401665.34 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,539189.3 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15041.0 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,3042.3 +,10061,11.41,ADHD-Inattentive,Male,101,103,99,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,976.6 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1181.1 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1097171E7 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1362827.0 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1349999.0 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1350222.9 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22816.5 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1254.2 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,665.0 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,761.5 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,704.6 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1056.5 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,890.0 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1765656.2 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,278451.78 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,278623.5 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,776.7166 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,833.5 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1294.0844 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1774.2 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4216.0815 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4607.5 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,67946.1 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,17683.1 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4435.531 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4725.8 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,290.8 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5231.8 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2245.0303 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2643.2 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6375.992 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6521.8 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,10423.165 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,10148.4 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,5073.2 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,484.2 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.5 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1831454.0 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,165.6 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,276586.03 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,272946.5 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,510.71777 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,688.9 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1025.4255 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2235.7 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4640.3496 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4502.1 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,67043.5 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,17003.8 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4845.169 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4748.1 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,305.9 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3868.5 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2251.6802 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2400.2 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6350.722 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6461.7 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,10238.295 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9672.2 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4844.4 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,538.6 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,26.4 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,74091.0 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1183263.9 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1193255.9 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1180357.0 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,555037.8 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,551570.0 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,761424.0 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9992.0 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1153.8 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,263253.72 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,715008.9 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10062,16.14,ADHD-Inattentive,Male,122,107,132,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,634584.1 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1143.6 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2504.8 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10063,15.91,Typically Developing Children,Female,105,99,109,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1111487E7 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1086909.0 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1065724.0 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1065833.6 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18749.5 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1026.7 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,484.0 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,518.2 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,517.8 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,868.4 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,806.1 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1363103.5 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,178197.69 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,252805.4 +,10063,15.91,Typically Developing Children,Female,105,99,109,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,575.8908 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,648.2 +,10063,15.91,Typically Developing Children,Female,105,99,109,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,831.25116 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1479.8 +,10063,15.91,Typically Developing Children,Female,105,99,109,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3924.8354 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3896.3 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58077.1 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15006.4 +,10063,15.91,Typically Developing Children,Female,105,99,109,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3626.915 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3934.2 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,715.9 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7254.7 +,10063,15.91,Typically Developing Children,Female,105,99,109,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1730.3324 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1962.2 +,10063,15.91,Typically Developing Children,Female,105,99,109,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5144.4473 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5316.8 +,10063,15.91,Typically Developing Children,Female,105,99,109,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7010.4395 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6063.6 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3713.5 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,531.0 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,5.6 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1496232.0 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,222.0 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,180467.2 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,251324.33 +,10063,15.91,Typically Developing Children,Female,105,99,109,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,122.36017 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,590.3 +,10063,15.91,Typically Developing Children,Female,105,99,109,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,791.3511 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1580.3 +,10063,15.91,Typically Developing Children,Female,105,99,109,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4057.8357 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4112.9 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59033.5 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15106.6 +,10063,15.91,Typically Developing Children,Female,105,99,109,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4189.506 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4113.3 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,615.8 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7752.3 +,10063,15.91,Typically Developing Children,Female,105,99,109,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1908.5526 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1792.0 +,10063,15.91,Typically Developing Children,Female,105,99,109,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4947.607 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5262.4 +,10063,15.91,Typically Developing Children,Female,105,99,109,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6515.679 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6178.0 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3650.8 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,506.0 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.2 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56251.0 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,921487.6 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,938463.6 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,918760.0 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,358664.9 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,504129.75 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,677848.75 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,16976.0 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,668.1 +,10063,15.91,Typically Developing Children,Female,105,99,109,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,184183.97 +,10063,15.91,Typically Developing Children,Female,105,99,109,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,634309.8 +,10063,15.91,Typically Developing Children,Female,105,99,109,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10063,15.91,Typically Developing Children,Female,105,99,109,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,429438.97 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1301.0 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2329.2 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10064,15.9,ADHD-Combined,Male,101,107,95,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1099242E7 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1330429.0 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1311042.0 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1311039.5 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21988.1 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1153.5 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,718.2 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,650.3 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,557.9 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1059.5 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1440.8 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1703533.2 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,243396.77 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,290396.2 +,10064,15.9,ADHD-Combined,Male,101,107,95,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,607.81085 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,781.7 +,10064,15.9,ADHD-Combined,Male,101,107,95,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,726.181 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1521.7 +,10064,15.9,ADHD-Combined,Male,101,107,95,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4975.5366 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4822.2 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,70247.3 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16560.2 +,10064,15.9,ADHD-Combined,Male,101,107,95,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4313.196 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4082.5 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,433.7 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7603.4 +,10064,15.9,ADHD-Combined,Male,101,107,95,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2217.113 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2399.5 +,10064,15.9,ADHD-Combined,Male,101,107,95,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6228.3984 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5942.7 +,10064,15.9,ADHD-Combined,Male,101,107,95,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9621.233 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8450.0 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4643.0 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,593.6 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,30.8 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1785904.0 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,281.0 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,245675.22 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,295740.3 +,10064,15.9,ADHD-Combined,Male,101,107,95,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,609.14087 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,725.7 +,10064,15.9,ADHD-Combined,Male,101,107,95,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,513.38074 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1707.5 +,10064,15.9,ADHD-Combined,Male,101,107,95,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5069.967 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4697.0 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,67842.4 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14806.2 +,10064,15.9,ADHD-Combined,Male,101,107,95,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3802.4753 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4112.4 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,623.1 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5060.1 +,10064,15.9,ADHD-Combined,Male,101,107,95,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2360.7532 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2180.0 +,10064,15.9,ADHD-Combined,Male,101,107,95,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6493.069 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5859.1 +,10064,15.9,ADHD-Combined,Male,101,107,95,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,10084.074 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8619.1 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4594.6 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,736.8 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,11.7 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67145.0 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1144945.5 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1159478.5 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1142191.0 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,489071.97 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,586136.5 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,791611.5 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14533.0 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1146.4 +,10064,15.9,ADHD-Combined,Male,101,107,95,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,235984.89 +,10064,15.9,ADHD-Combined,Male,101,107,95,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,718766.25 +,10064,15.9,ADHD-Combined,Male,101,107,95,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10064,15.9,ADHD-Combined,Male,101,107,95,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,557047.3 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,692.7 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1150.8 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10065,14.19,Typically Developing Children,Female,88,89,91,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1116514E7 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1017890.0 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1005271.0 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1005362.0 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16096.0 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,942.2 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,629.5 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,580.5 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,646.6 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,988.4 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,961.0 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1346037.8 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,186133.56 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,234836.23 +,10065,14.19,Typically Developing Children,Female,88,89,91,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,533.33075 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,561.7 +,10065,14.19,Typically Developing Children,Female,88,89,91,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,437.57062 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1309.2 +,10065,14.19,Typically Developing Children,Female,88,89,91,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3344.9546 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3307.9 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,47197.6 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11842.2 +,10065,14.19,Typically Developing Children,Female,88,89,91,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2674.6338 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3235.4 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,566.3 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4746.6 +,10065,14.19,Typically Developing Children,Female,88,89,91,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1529.5021 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1957.9 +,10065,14.19,Typically Developing Children,Female,88,89,91,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5234.887 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4830.1 +,10065,14.19,Typically Developing Children,Female,88,89,91,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6814.929 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6768.3 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3211.8 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,393.3 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,14.3 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1384762.0 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,188.8 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,183147.14 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,232065.1 +,10065,14.19,Typically Developing Children,Female,88,89,91,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,368.41052 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,489.8 +,10065,14.19,Typically Developing Children,Female,88,89,91,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,505.4007 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1458.0 +,10065,14.19,Typically Developing Children,Female,88,89,91,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3330.3247 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3463.7 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,45505.1 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11302.7 +,10065,14.19,Typically Developing Children,Female,88,89,91,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2888.764 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3173.9 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,389.9 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3995.4 +,10065,14.19,Typically Developing Children,Female,88,89,91,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1496.2521 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1823.9 +,10065,14.19,Typically Developing Children,Female,88,89,91,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4623.0864 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4910.1 +,10065,14.19,Typically Developing Children,Female,88,89,91,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6567.549 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6689.2 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3332.7 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,508.5 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,11.3 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,52561.0 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,891643.0 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,901701.0 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,888475.0 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,369280.7 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,466901.3 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,613725.3 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10058.0 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,885.0 +,10065,14.19,Typically Developing Children,Female,88,89,91,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,175548.27 +,10065,14.19,Typically Developing Children,Female,88,89,91,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,612058.9 +,10065,14.19,Typically Developing Children,Female,88,89,91,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10065,14.19,Typically Developing Children,Female,88,89,91,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,433128.4 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,970.0 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1447.2 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10066,13.9,Typically Developing Children,Female,116,106,122,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1114853E7 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1016033.0 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,994310.0 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,993885.5 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,14802.2 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1071.1 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,535.8 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,498.1 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,475.9 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,737.4 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,945.4 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1437456.4 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,183827.64 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,225268.1 +,10066,13.9,Typically Developing Children,Female,116,106,122,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,436.2406 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,514.7 +,10066,13.9,Typically Developing Children,Female,116,106,122,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,981.5414 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1484.0 +,10066,13.9,Typically Developing Children,Female,116,106,122,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3137.4744 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3383.9 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,43991.9 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,20579.0 +,10066,13.9,Typically Developing Children,Female,116,106,122,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2657.3438 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3321.8 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,249.6 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,11569.2 +,10066,13.9,Typically Developing Children,Female,116,106,122,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1549.4521 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1953.6 +,10066,13.9,Typically Developing Children,Female,116,106,122,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4551.266 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4540.0 +,10066,13.9,Typically Developing Children,Female,116,106,122,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7236.54 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7256.6 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3463.8 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,459.2 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,22.1 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1495436.0 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,79.1 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,185670.06 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,224164.72 +,10066,13.9,Typically Developing Children,Female,116,106,122,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,202.16028 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,510.2 +,10066,13.9,Typically Developing Children,Female,116,106,122,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1028.0914 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1468.3 +,10066,13.9,Typically Developing Children,Female,116,106,122,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3386.1846 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3595.8 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,45467.0 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10307.4 +,10066,13.9,Typically Developing Children,Female,116,106,122,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3097.5742 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3406.6 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,279.7 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6102.2 +,10066,13.9,Typically Developing Children,Female,116,106,122,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1677.1323 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1768.5 +,10066,13.9,Typically Developing Children,Female,116,106,122,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4616.4365 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4460.5 +,10066,13.9,Typically Developing Children,Female,116,106,122,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7453.33 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7520.8 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3353.5 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,414.8 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.1 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,54120.0 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,875513.5 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,894149.5 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,873422.0 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,369497.7 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,449432.8 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,594165.8 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,18636.0 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2132.5 +,10066,13.9,Typically Developing Children,Female,116,106,122,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,246909.52 +,10066,13.9,Typically Developing Children,Female,116,106,122,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,591785.6 +,10066,13.9,Typically Developing Children,Female,116,106,122,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10066,13.9,Typically Developing Children,Female,116,106,122,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,471574.75 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,931.6 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2080.0 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,1.110121E7 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1422993.0 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1405863.0 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1406016.5 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21974.7 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,926.4 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,509.0 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,525.5 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,513.6 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,838.5 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1048.4 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1768710.6 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,269764.84 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,334674.62 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,643.71716 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,748.2 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,968.2358 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1567.5 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4865.1187 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4880.6 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52485.9 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12420.6 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4810.589 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4376.6 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,364.7 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6458.6 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1897.9017 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2207.8 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5539.426 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5271.0 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9159.67 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8840.4 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4622.5 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,616.2 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,15.7 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1897323.0 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,222.9 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,267974.6 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,339185.5 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,538.64764 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,680.9 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,742.1368 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1748.8 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5088.5576 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5083.9 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,49972.1 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12256.6 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4846.499 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4584.3 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,373.8 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5735.8 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1976.3713 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1993.2 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5631.1953 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5195.9 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8881.701 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8906.7 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4436.4 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,564.0 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,10.3 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67450.0 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1280692.5 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1294151.5 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1278704.0 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,537739.44 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,673860.1 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,844692.1 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13459.0 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1072.8 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,221984.02 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,795161.0 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10068,13.3,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,565534.8 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,898.4 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1387.1 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10069,16.93,Typically Developing Children,Male,124,120,120,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1100604E7 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1371525.0 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1357076.0 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1357522.5 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,23293.3 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1101.4 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,764.7 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,775.3 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,492.4 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,945.0 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1078.8 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1807433.9 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,265051.6 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,297579.2 +,10069,16.93,Typically Developing Children,Male,124,120,120,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,646.38086 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,742.2 +,10069,16.93,Typically Developing Children,Male,124,120,120,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,638.4009 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1622.4 +,10069,16.93,Typically Developing Children,Male,124,120,120,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4144.2856 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3976.1 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,64328.3 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16614.9 +,10069,16.93,Typically Developing Children,Male,124,120,120,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4710.8667 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4597.7 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,264.9 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4856.5 +,10069,16.93,Typically Developing Children,Male,124,120,120,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1689.1023 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2253.6 +,10069,16.93,Typically Developing Children,Male,124,120,120,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5560.738 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5028.1 +,10069,16.93,Typically Developing Children,Male,124,120,120,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,10001.613 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9708.2 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4859.8 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,619.5 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,4.9 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1841009.0 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,188.2 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,266513.25 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,300905.44 +,10069,16.93,Typically Developing Children,Male,124,120,120,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,566.5808 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,712.2 +,10069,16.93,Typically Developing Children,Male,124,120,120,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1145.1316 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1857.6 +,10069,16.93,Typically Developing Children,Male,124,120,120,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4220.0957 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3992.5 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63280.2 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,16766.2 +,10069,16.93,Typically Developing Children,Male,124,120,120,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4712.1963 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4437.6 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,297.7 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5174.7 +,10069,16.93,Typically Developing Children,Male,124,120,120,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1969.7327 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1955.5 +,10069,16.93,Typically Developing Children,Male,124,120,120,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5844.028 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5632.2 +,10069,16.93,Typically Developing Children,Male,124,120,120,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,10411.254 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8989.8 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4375.5 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,672.2 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,21.3 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66316.0 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1199692.5 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1211019.5 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1195798.0 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,531564.8 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,598484.6 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,793394.6 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11327.0 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,984.1 +,10069,16.93,Typically Developing Children,Male,124,120,120,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,261160.48 +,10069,16.93,Typically Developing Children,Male,124,120,120,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,723550.25 +,10069,16.93,Typically Developing Children,Male,124,120,120,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10069,16.93,Typically Developing Children,Male,124,120,120,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,596862.25 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,978.8 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1335.1 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10070,10.52,Typically Developing Children,Male,105,97,111,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1105813E7 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1151042.0 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1139370.0 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1138910.0 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18418.0 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,648.4 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,546.5 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,478.3 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,579.1 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,796.8 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,946.0 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1391316.2 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,203830.64 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,269902.3 +,10070,10.52,Typically Developing Children,Male,105,97,111,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,569.2408 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,750.2 +,10070,10.52,Typically Developing Children,Male,105,97,111,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1228.9216 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1617.3 +,10070,10.52,Typically Developing Children,Male,105,97,111,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4861.1567 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4425.5 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,49304.1 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12918.9 +,10070,10.52,Typically Developing Children,Male,105,97,111,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3391.5046 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3566.3 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,373.4 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4274.1 +,10070,10.52,Typically Developing Children,Male,105,97,111,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2021.6028 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2176.8 +,10070,10.52,Typically Developing Children,Male,105,97,111,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6010.2783 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6577.9 +,10070,10.52,Typically Developing Children,Male,105,97,111,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7715.341 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6939.9 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3915.6 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,454.1 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.5 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1500789.0 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,113.3 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,204184.58 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,272667.44 +,10070,10.52,Typically Developing Children,Male,105,97,111,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,468.16064 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,819.5 +,10070,10.52,Typically Developing Children,Male,105,97,111,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,497.4207 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1891.7 +,10070,10.52,Typically Developing Children,Male,105,97,111,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4875.7866 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4071.9 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,51484.2 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12686.5 +,10070,10.52,Typically Developing Children,Male,105,97,111,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3306.3845 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3591.4 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,271.3 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3430.7 +,10070,10.52,Typically Developing Children,Male,105,97,111,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1981.7028 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2027.0 +,10070,10.52,Typically Developing Children,Male,105,97,111,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6437.209 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6618.6 +,10070,10.52,Typically Developing Children,Male,105,97,111,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7686.0806 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6448.4 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4252.6 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,517.5 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.0 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61420.0 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1015822.0 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1024473.0 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1012367.0 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,408015.22 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,542569.75 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,705756.75 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8651.0 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2134.8 +,10070,10.52,Typically Developing Children,Male,105,97,111,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,146558.22 +,10070,10.52,Typically Developing Children,Male,105,97,111,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,677685.1 +,10070,10.52,Typically Developing Children,Male,105,97,111,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10070,10.52,Typically Developing Children,Male,105,97,111,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,471457.72 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,883.6 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1635.4 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1110979E7 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1101496.0 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1087347.0 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1087434.9 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17834.3 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1017.3 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,641.3 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,676.2 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,582.8 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,952.7 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,977.9 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1365103.1 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,197750.19 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,250174.2 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,277.9704 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,707.6 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,865.8312 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1604.1 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3879.6152 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3713.5 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57895.8 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12673.4 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3468.6448 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3403.3 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,346.6 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4615.7 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1850.0326 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2092.8 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4460.826 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5074.4 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7991.981 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7270.4 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3623.9 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,422.3 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.8 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1445902.0 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,108.4 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,193612.78 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,246755.75 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,473.48065 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,759.8 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,776.72107 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1624.6 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3860.9954 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3690.2 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58807.7 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12863.4 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3587.015 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3661.0 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,310.0 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5213.9 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1768.9025 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1729.6 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4826.5767 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5039.7 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7796.4707 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7099.6 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3566.6 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,543.6 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,13.7 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56759.0 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,947695.94 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,958614.94 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,944874.0 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,391362.97 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,496929.94 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,671452.94 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10919.0 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,683.1 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,175753.1 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,629356.9 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10071,14.09,ADHD-Inattentive,Male,83,88,80,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,457149.56 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,791.5 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1337.8 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10072,7.25,ADHD-Combined,Male,109,107,108,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1113349E7 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1099765.0 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1090130.0 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1089887.5 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16668.1 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,747.0 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,495.2 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,475.7 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,432.6 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,768.7 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1141.5 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1350451.2 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,173561.83 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,279936.06 +,10072,7.25,ADHD-Combined,Male,109,107,108,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,247.38034 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,875.0 +,10072,7.25,ADHD-Combined,Male,109,107,108,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,585.2008 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1357.8 +,10072,7.25,ADHD-Combined,Male,109,107,108,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3900.8953 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3332.9 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55214.1 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11779.1 +,10072,7.25,ADHD-Combined,Male,109,107,108,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3355.5947 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3514.4 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,219.3 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3048.2 +,10072,7.25,ADHD-Combined,Male,109,107,108,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1419.1119 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1738.9 +,10072,7.25,ADHD-Combined,Male,109,107,108,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4810.6167 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5067.9 +,10072,7.25,ADHD-Combined,Male,109,107,108,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7747.2607 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7138.6 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3824.1 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,320.3 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,3.1 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1425443.0 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,122.0 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,176865.6 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,272888.03 +,10072,7.25,ADHD-Combined,Male,109,107,108,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,474.81067 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,700.8 +,10072,7.25,ADHD-Combined,Male,109,107,108,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,714.211 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1809.6 +,10072,7.25,ADHD-Combined,Male,109,107,108,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3787.8452 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3611.0 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53327.8 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10197.3 +,10072,7.25,ADHD-Combined,Male,109,107,108,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3323.6746 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3692.6 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,340.6 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2518.5 +,10072,7.25,ADHD-Combined,Male,109,107,108,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1272.8118 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1658.9 +,10072,7.25,ADHD-Combined,Male,109,107,108,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4835.8867 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5134.6 +,10072,7.25,ADHD-Combined,Male,109,107,108,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7039.6997 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7297.5 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3811.5 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,314.4 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,20.4 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56694.0 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,962163.5 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,968634.5 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,960079.0 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,350427.44 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,552824.1 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,718045.1 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6471.0 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1067.6 +,10072,7.25,ADHD-Combined,Male,109,107,108,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,137077.97 +,10072,7.25,ADHD-Combined,Male,109,107,108,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,727342.06 +,10072,7.25,ADHD-Combined,Male,109,107,108,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10072,7.25,ADHD-Combined,Male,109,107,108,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,433439.62 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1143.0 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1769.5 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10073,14.46,ADHD-Combined,Male,82,79,88,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1106247E7 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1289753.0 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1271957.0 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1272156.2 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19829.3 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1257.0 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,541.5 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,591.5 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,615.4 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,990.3 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,860.5 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1455378.6 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,254951.78 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,292007.6 +,10073,14.46,ADHD-Combined,Male,82,79,88,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,280.63037 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,576.1 +,10073,14.46,ADHD-Combined,Male,82,79,88,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,972.2313 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1510.8 +,10073,14.46,ADHD-Combined,Male,82,79,88,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4603.136 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4316.6 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,41965.4 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11207.5 +,10073,14.46,ADHD-Combined,Male,82,79,88,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4047.1956 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4168.3 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,454.2 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6619.8 +,10073,14.46,ADHD-Combined,Male,82,79,88,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1663.8323 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2302.9 +,10073,14.46,ADHD-Combined,Male,82,79,88,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5373.2075 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5643.7 +,10073,14.46,ADHD-Combined,Male,82,79,88,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8659.642 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8078.8 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4821.2 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,502.6 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1715682.0 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,240.6 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,261440.89 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,290413.97 +,10073,14.46,ADHD-Combined,Male,82,79,88,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,127.680176 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,670.2 +,10073,14.46,ADHD-Combined,Male,82,79,88,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,839.23114 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2021.5 +,10073,14.46,ADHD-Combined,Male,82,79,88,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4536.636 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4414.0 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,43127.3 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10968.5 +,10073,14.46,ADHD-Combined,Male,82,79,88,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3891.5854 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3808.9 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,419.9 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6179.3 +,10073,14.46,ADHD-Combined,Male,82,79,88,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1913.8727 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2263.7 +,10073,14.46,ADHD-Combined,Male,82,79,88,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5596.6475 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5844.3 +,10073,14.46,ADHD-Combined,Male,82,79,88,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8111.681 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7650.1 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4733.9 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,602.1 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,11.6 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64545.0 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1167175.2 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1181360.2 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1163020.0 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,516392.66 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,582421.56 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,734414.56 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14185.0 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1395.9 +,10073,14.46,ADHD-Combined,Male,82,79,88,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,217242.5 +,10073,14.46,ADHD-Combined,Male,82,79,88,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,665502.3 +,10073,14.46,ADHD-Combined,Male,82,79,88,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10073,14.46,ADHD-Combined,Male,82,79,88,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,526345.56 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1529.4 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2086.4 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10074,8.06,ADHD-Combined,Male,88,88,92,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1103221E7 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1340069.0 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1313605.0 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1312285.6 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21704.3 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1170.1 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,716.9 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,978.7 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,747.7 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1184.5 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1379.5 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1770315.0 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,235707.75 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,307609.4 +,10074,8.06,ADHD-Combined,Male,88,88,92,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,598.50085 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,751.1 +,10074,8.06,ADHD-Combined,Male,88,88,92,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,841.8912 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1677.6 +,10074,8.06,ADHD-Combined,Male,88,88,92,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4458.166 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4389.4 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,65836.6 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,17879.5 +,10074,8.06,ADHD-Combined,Male,88,88,92,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3041.714 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3673.8 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,609.0 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,10646.5 +,10074,8.06,ADHD-Combined,Male,88,88,92,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1927.1726 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2237.4 +,10074,8.06,ADHD-Combined,Male,88,88,92,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6431.8887 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6552.9 +,10074,8.06,ADHD-Combined,Male,88,88,92,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9485.573 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9302.6 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4734.5 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,589.4 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,40.7 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1902523.0 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,112.4 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,232040.8 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,302122.7 +,10074,8.06,ADHD-Combined,Male,88,88,92,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,565.2508 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,784.9 +,10074,8.06,ADHD-Combined,Male,88,88,92,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,720.86096 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1911.0 +,10074,8.06,ADHD-Combined,Male,88,88,92,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4670.9663 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4432.5 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62971.8 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,18783.1 +,10074,8.06,ADHD-Combined,Male,88,88,92,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2835.564 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4077.5 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,442.6 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,9180.6 +,10074,8.06,ADHD-Combined,Male,88,88,92,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1936.4827 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2095.5 +,10074,8.06,ADHD-Combined,Male,88,88,92,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6834.8794 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6378.1 +,10074,8.06,ADHD-Combined,Male,88,88,92,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9294.053 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9270.5 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4606.0 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,774.4 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.2 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,69417.0 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1150420.6 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1172019.6 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1148144.0 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,467748.53 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,609732.1 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,808487.1 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,21599.0 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2078.1 +,10074,8.06,ADHD-Combined,Male,88,88,92,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,234208.0 +,10074,8.06,ADHD-Combined,Male,88,88,92,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,813950.5 +,10074,8.06,ADHD-Combined,Male,88,88,92,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10074,8.06,ADHD-Combined,Male,88,88,92,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,585945.6 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,881.9 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1365.6 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1109457E7 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1270271.0 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1261011.0 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1261027.9 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18645.3 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,814.6 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,590.7 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,651.6 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,332.5 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,713.7 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,722.1 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1503676.5 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,221306.72 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,306834.53 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,555.9408 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,722.2 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,892.4312 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1547.2 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4049.8555 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3539.1 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55553.6 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13735.6 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3911.5354 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3958.3 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,328.7 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3171.2 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1690.4324 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2026.7 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5607.2876 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5846.4 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7920.161 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8114.2 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4161.5 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,369.2 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,21.7 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1632600.0 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,110.5 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,223281.72 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,309764.9 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,406.98056 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,566.4 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,195.51027 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2015.8 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3876.9553 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3691.7 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54885.6 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12661.7 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4228.0757 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4035.6 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,349.9 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2477.3 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1892.5927 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1800.8 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5688.418 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5882.8 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6490.409 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8182.0 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4239.7 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,392.6 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.6 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62305.0 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1127079.9 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1133651.9 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1123386.0 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,444588.44 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,616599.44 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,790336.44 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6572.0 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1424.3 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,163896.12 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,753910.2 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10075,11.09,ADHD-Inattentive,Male,73,72,77,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,503492.16 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,731.2 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1054.2 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10076,15.95,Typically Developing Children,Female,113,106,118,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1116477E7 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,997154.0 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,982738.0 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,982985.75 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16748.8 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,932.8 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,607.3 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,514.5 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,427.9 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,670.9 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,928.0 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1324521.1 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,176331.28 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,236373.12 +,10076,15.95,Typically Developing Children,Female,113,106,118,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,512.0478 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,461.8 +,10076,15.95,Typically Developing Children,Female,113,106,118,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,570.5675 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1310.9 +,10076,15.95,Typically Developing Children,Female,113,106,118,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3053.6667 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3246.4 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,45306.5 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10075.6 +,10076,15.95,Typically Developing Children,Female,113,106,118,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3524.4846 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3860.5 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,345.6 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5670.5 +,10076,15.95,Typically Developing Children,Female,113,106,118,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1451.0237 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1780.4 +,10076,15.95,Typically Developing Children,Female,113,106,118,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4024.5625 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,3964.8 +,10076,15.95,Typically Developing Children,Female,113,106,118,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7350.878 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6130.8 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3495.4 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,556.0 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,25.8 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1344743.0 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,133.5 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,176328.39 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,233902.95 +,10076,15.95,Typically Developing Children,Female,113,106,118,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,313.87863 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,541.1 +,10076,15.95,Typically Developing Children,Female,113,106,118,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,590.51746 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1434.9 +,10076,15.95,Typically Developing Children,Female,113,106,118,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3273.1157 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3237.1 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,44523.1 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,9997.6 +,10076,15.95,Typically Developing Children,Female,113,106,118,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3319.6655 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3922.5 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,418.0 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4862.5 +,10076,15.95,Typically Developing Children,Female,113,106,118,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1512.2034 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1612.6 +,10076,15.95,Typically Developing Children,Female,113,106,118,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4012.5925 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4102.2 +,10076,15.95,Typically Developing Children,Female,113,106,118,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6813.56 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6090.9 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3347.0 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,651.1 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.7 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,50717.0 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,875339.75 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,887254.75 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,873289.0 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,352659.7 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,470276.06 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,611091.06 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11915.0 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,881.0 +,10076,15.95,Typically Developing Children,Female,113,106,118,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,176931.78 +,10076,15.95,Typically Developing Children,Female,113,106,118,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,605624.8 +,10076,15.95,Typically Developing Children,Female,113,106,118,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10076,15.95,Typically Developing Children,Female,113,106,118,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,411601.28 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,744.3 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,915.4 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10077,8.03,Typically Developing Children,Female,86,77,99,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1135839E7 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1083730.0 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1073061.0 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1072809.2 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15323.4 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1195.0 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,595.8 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,806.5 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,553.1 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,968.5 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,779.7 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1343965.4 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,199600.98 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,255938.53 +,10077,8.03,Typically Developing Children,Female,86,77,99,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,118.37016 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,640.0 +,10077,8.03,Typically Developing Children,Female,86,77,99,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,332.50046 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1255.3 +,10077,8.03,Typically Developing Children,Female,86,77,99,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2465.8235 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3609.3 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,42993.5 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,9767.0 +,10077,8.03,Typically Developing Children,Female,86,77,99,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,937.6513 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2985.1 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,176.8 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4299.6 +,10077,8.03,Typically Developing Children,Female,86,77,99,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,885.78125 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1856.1 +,10077,8.03,Typically Developing Children,Female,86,77,99,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,1562.7522 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4761.4 +,10077,8.03,Typically Developing Children,Female,86,77,99,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,4236.0557 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7029.2 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3752.6 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,213.0 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,21.9 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1474258.0 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,125.1 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,203562.84 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,258399.92 +,10077,8.03,Typically Developing Children,Female,86,77,99,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,51.87007 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,590.4 +,10077,8.03,Typically Developing Children,Female,86,77,99,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,351.12048 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1613.1 +,10077,8.03,Typically Developing Children,Female,86,77,99,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2729.1638 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3822.4 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,40312.8 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,8913.5 +,10077,8.03,Typically Developing Children,Female,86,77,99,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,844.55115 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3107.6 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,224.2 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3461.1 +,10077,8.03,Typically Developing Children,Female,86,77,99,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,821.94116 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1660.5 +,10077,8.03,Typically Developing Children,Female,86,77,99,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,1528.1721 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4803.0 +,10077,8.03,Typically Developing Children,Female,86,77,99,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,4158.9155 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6797.6 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3786.5 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,331.8 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,11.4 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,53871.0 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,973182.3 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,981480.3 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,971528.0 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,403163.84 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,514338.47 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,651998.44 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8298.0 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,586.5 +,10077,8.03,Typically Developing Children,Female,86,77,99,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,204771.08 +,10077,8.03,Typically Developing Children,Female,86,77,99,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,635224.8 +,10077,8.03,Typically Developing Children,Female,86,77,99,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10077,8.03,Typically Developing Children,Female,86,77,99,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,445621.1 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,920.7 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2028.5 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10078,8.19,ADHD-Combined,Male,121,125,113,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1104725E7 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1261052.0 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1247689.0 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1246995.6 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20321.9 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1083.5 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,536.8 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,536.6 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,591.3 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,875.9 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,766.8 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1543537.9 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,213860.27 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,295277.72 +,10078,8.19,ADHD-Combined,Male,121,125,113,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,863.16626 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,938.6 +,10078,8.19,ADHD-Combined,Male,121,125,113,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1161.085 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1397.7 +,10078,8.19,ADHD-Combined,Male,121,125,113,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4093.7222 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4109.4 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63128.1 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,18175.5 +,10078,8.19,ADHD-Combined,Male,121,125,113,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2541.619 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3499.5 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,820.6 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4265.5 +,10078,8.19,ADHD-Combined,Male,121,125,113,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1804.8021 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1766.4 +,10078,8.19,ADHD-Combined,Male,121,125,113,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6090.0435 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5835.0 +,10078,8.19,ADHD-Combined,Male,121,125,113,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9287.35 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7998.0 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4380.9 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,311.6 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,68.1 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1686659.0 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,145.2 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,214158.94 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,297309.7 +,10078,8.19,ADHD-Combined,Male,121,125,113,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,736.8168 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,733.5 +,10078,8.19,ADHD-Combined,Male,121,125,113,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,585.19745 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1719.6 +,10078,8.19,ADHD-Combined,Male,121,125,113,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4456.8105 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4305.2 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64209.7 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,17973.2 +,10078,8.19,ADHD-Combined,Male,121,125,113,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3739.9436 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3761.3 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,786.6 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3935.0 +,10078,8.19,ADHD-Combined,Male,121,125,113,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1818.102 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1621.5 +,10078,8.19,ADHD-Combined,Male,121,125,113,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5935.764 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5819.7 +,10078,8.19,ADHD-Combined,Male,121,125,113,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8960.171 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7900.9 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4292.6 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,312.9 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.0 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62205.0 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1086785.6 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1096642.6 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1083444.0 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,428019.2 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,592587.44 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,783410.44 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9857.0 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1309.2 +,10078,8.19,ADHD-Combined,Male,121,125,113,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,169604.84 +,10078,8.19,ADHD-Combined,Male,121,125,113,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,761794.06 +,10078,8.19,ADHD-Combined,Male,121,125,113,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10078,8.19,ADHD-Combined,Male,121,125,113,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,513915.1 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,902.7 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1870.3 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10079,15.27,Typically Developing Children,Male,104,110,96,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1105997E7 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1356920.0 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1327238.0 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1327879.4 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20351.7 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1072.2 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,476.6 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,465.3 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,327.4 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1010.8 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,2387.7 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1724306.1 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,253910.34 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,302523.12 +,10079,15.27,Typically Developing Children,Male,104,110,96,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,446.8806 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,812.8 +,10079,15.27,Typically Developing Children,Male,104,110,96,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1118.5315 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1597.8 +,10079,15.27,Typically Developing Children,Male,104,110,96,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4149.6055 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4454.0 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57945.3 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15210.0 +,10079,15.27,Typically Developing Children,Male,104,110,96,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3532.4849 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3723.3 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,687.3 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,12465.9 +,10079,15.27,Typically Developing Children,Male,104,110,96,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2094.753 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2237.6 +,10079,15.27,Typically Developing Children,Male,104,110,96,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6308.1987 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5808.2 +,10079,15.27,Typically Developing Children,Male,104,110,96,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8367.042 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8507.3 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4264.7 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,495.3 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,2.7 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1787214.0 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,128.9 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,253880.17 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,301828.75 +,10079,15.27,Typically Developing Children,Male,104,110,96,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,590.5208 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,912.8 +,10079,15.27,Typically Developing Children,Male,104,110,96,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1356.6018 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1834.9 +,10079,15.27,Typically Developing Children,Male,104,110,96,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3069.6443 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4753.8 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60813.2 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14528.7 +,10079,15.27,Typically Developing Children,Male,104,110,96,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4343.786 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4128.7 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,387.7 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,10622.7 +,10079,15.27,Typically Developing Children,Male,104,110,96,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2028.2528 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1984.0 +,10079,15.27,Typically Developing Children,Male,104,110,96,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5950.428 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5952.9 +,10079,15.27,Typically Developing Children,Male,104,110,96,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7510.5205 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8887.4 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3988.9 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,607.3 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.0 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65876.0 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1181895.4 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1206568.4 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1177260.0 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,507790.5 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,604351.9 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,791363.9 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,24673.0 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1085.9 +,10079,15.27,Typically Developing Children,Male,104,110,96,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,213604.94 +,10079,15.27,Typically Developing Children,Male,104,110,96,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,707812.4 +,10079,15.27,Typically Developing Children,Male,104,110,96,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10079,15.27,Typically Developing Children,Male,104,110,96,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,550002.3 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,850.7 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1272.3 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10080,17.86,Typically Developing Children,Female,106,103,106,http://purl.org/nidash/fsl#,Background (mm^3),,,1.110585E7 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1168886.0 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1138520.0 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1138541.4 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19663.8 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1036.0 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,536.3 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,733.2 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,567.7 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1005.3 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1025.3 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1514195.0 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,215580.33 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,244218.33 +,10080,17.86,Typically Developing Children,Female,106,103,106,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,575.89 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,622.9 +,10080,17.86,Typically Developing Children,Female,106,103,106,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1175.7201 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1425.2 +,10080,17.86,Typically Developing Children,Female,106,103,106,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3669.4702 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3698.3 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61703.4 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15417.4 +,10080,17.86,Typically Developing Children,Female,106,103,106,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4283.93 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4581.7 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,500.9 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,10615.6 +,10080,17.86,Typically Developing Children,Female,106,103,106,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1979.04 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2299.3 +,10080,17.86,Typically Developing Children,Female,106,103,106,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4911.69 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5033.7 +,10080,17.86,Typically Developing Children,Female,106,103,106,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9005.431 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7620.1 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4423.9 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,939.0 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.0 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1559001.0 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,101.9 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,217951.31 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,245921.44 +,10080,17.86,Typically Developing Children,Female,106,103,106,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,420.28 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,638.0 +,10080,17.86,Typically Developing Children,Female,106,103,106,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,892.43005 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1783.8 +,10080,17.86,Typically Developing Children,Female,106,103,106,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3935.4702 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3840.3 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60902.3 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15316.3 +,10080,17.86,Typically Developing Children,Female,106,103,106,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4713.52 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4381.9 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,412.2 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,14870.5 +,10080,17.86,Typically Developing Children,Female,106,103,106,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1860.67 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2109.1 +,10080,17.86,Typically Developing Children,Female,106,103,106,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5067.3003 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5094.1 +,10080,17.86,Typically Developing Children,Female,106,103,106,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8508.011 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7708.3 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4338.4 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,695.1 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,8.4 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61785.0 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,988332.4 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1015825.4 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,985364.0 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,433531.62 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,490139.75 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,675215.75 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,27493.0 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1119.2 +,10080,17.86,Typically Developing Children,Female,106,103,106,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,209247.58 +,10080,17.86,Typically Developing Children,Female,106,103,106,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,644802.6 +,10080,17.86,Typically Developing Children,Female,106,103,106,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10080,17.86,Typically Developing Children,Female,106,103,106,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,494644.3 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1217.0 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2691.9 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1107126E7 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1116787.0 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1095795.0 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1096015.1 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20466.8 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,946.2 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,533.0 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,585.9 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,554.4 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,989.3 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1134.2 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1444692.2 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,203940.58 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,247949.7 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,533.33075 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,574.4 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,783.3711 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1527.5 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3926.1655 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3785.2 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54184.8 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13241.2 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4216.106 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3943.2 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,344.7 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6875.3 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1905.8926 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1884.1 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5542.1177 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5078.6 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8332.462 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7378.2 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4206.6 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,685.2 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,37.0 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1482466.0 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,180.3 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,204917.73 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,248272.14 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,399.00055 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,549.2 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,852.5312 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1803.5 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4001.9756 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3961.9 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53648.7 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12846.3 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4406.296 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3972.2 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,453.0 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7536.2 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1840.7225 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1693.9 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5093.907 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5044.4 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7904.2007 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7180.1 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4017.6 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,659.7 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,7.9 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58462.0 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,964768.2 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,980861.2 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,963209.0 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,408858.3 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,496221.84 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,662171.9 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,16093.0 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,656.5 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,184173.33 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,632530.25 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10081,15.81,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,482488.75 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1038.0 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1696.3 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10082,11.4,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Background (mm^3),,,1.110622E7 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1427217.0 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1415443.0 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1414069.8 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20252.4 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,779.1 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,977.2 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,873.9 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,652.9 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,884.6 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,857.4 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1620399.6 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,247871.42 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,351411.88 +,10082,11.4,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,430.91812 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,870.6 +,10082,11.4,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1021.43555 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1844.1 +,10082,11.4,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4133.622 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3803.7 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62271.6 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14600.1 +,10082,11.4,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4379.671 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4634.0 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,317.8 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3527.2 +,10082,11.4,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2060.1611 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2196.3 +,10082,11.4,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6233.6826 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6603.1 +,10082,11.4,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6958.53 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8594.4 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4553.7 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,533.0 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,36.5 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1844605.0 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,144.0 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,246949.48 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,343713.03 +,10082,11.4,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,416.28818 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,683.6 +,10082,11.4,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1099.9052 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2217.5 +,10082,11.4,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4484.74 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4114.9 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63407.0 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14600.7 +,10082,11.4,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4126.972 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4541.9 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,621.8 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3397.9 +,10082,11.4,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2066.811 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2179.7 +,10082,11.4,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6479.732 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6282.2 +,10082,11.4,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6687.211 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8487.8 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4724.2 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,616.3 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.3 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68416.0 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1263809.8 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1272228.8 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1259613.0 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,494820.9 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,695124.9 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,890556.9 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8419.0 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2267.0 +,10082,11.4,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,148668.08 +,10082,11.4,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,834206.94 +,10082,11.4,Typically Developing Children,Male,142,133,141,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10082,11.4,Typically Developing Children,Male,142,133,141,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,564853.9 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,794.9 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1455.2 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10083,14.42,Typically Developing Children,Female,132,124,132,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1109765E7 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1253169.0 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1240379.0 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1240811.0 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18880.8 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,963.2 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,508.1 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,524.0 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,497.7 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,817.5 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,758.5 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1510958.4 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,236227.11 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,287134.22 +,10083,14.42,Typically Developing Children,Female,132,124,132,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,659.6809 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,555.4 +,10083,14.42,Typically Developing Children,Female,132,124,132,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,708.891 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1415.2 +,10083,14.42,Typically Developing Children,Female,132,124,132,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3626.915 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3636.1 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53266.5 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14177.2 +,10083,14.42,Typically Developing Children,Female,132,124,132,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3442.0447 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3753.7 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,645.8 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4463.9 +,10083,14.42,Typically Developing Children,Female,132,124,132,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1415.122 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1960.1 +,10083,14.42,Typically Developing Children,Female,132,124,132,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5834.7183 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6129.9 +,10083,14.42,Typically Developing Children,Female,132,124,132,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8166.2114 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7924.7 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3763.9 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,474.2 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,30.7 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1640309.0 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,183.3 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,235386.83 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,286417.84 +,10083,14.42,Typically Developing Children,Female,132,124,132,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,453.53064 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,625.9 +,10083,14.42,Typically Developing Children,Female,132,124,132,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,683.621 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1574.7 +,10083,14.42,Typically Developing Children,Female,132,124,132,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3585.685 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3626.1 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54124.4 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13534.4 +,10083,14.42,Typically Developing Children,Female,132,124,132,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3108.2144 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3996.6 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,460.3 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3985.0 +,10083,14.42,Typically Developing Children,Female,132,124,132,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1513.5421 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1806.9 +,10083,14.42,Typically Developing Children,Female,132,124,132,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5934.4683 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6139.3 +,10083,14.42,Typically Developing Children,Female,132,124,132,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7966.711 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8066.6 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3562.3 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,653.1 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,27.8 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60612.0 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1108136.0 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1118162.0 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1105207.0 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,471613.94 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,573552.06 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,742140.06 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10026.0 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1019.5 +,10083,14.42,Typically Developing Children,Female,132,124,132,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,167629.44 +,10083,14.42,Typically Developing Children,Female,132,124,132,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,725916.3 +,10083,14.42,Typically Developing Children,Female,132,124,132,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10083,14.42,Typically Developing Children,Female,132,124,132,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,530723.94 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,608.1 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1535.1 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10084,17.96,Typically Developing Children,Female,108,102,113,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1112344E7 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1027931.0 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1012420.0 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1012467.75 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16645.8 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1089.8 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,554.3 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,635.8 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,581.6 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1088.8 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,997.0 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1103704.4 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,193418.72 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,218207.66 +,10084,17.96,Typically Developing Children,Female,108,102,113,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,593.1808 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,685.8 +,10084,17.96,Typically Developing Children,Female,108,102,113,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,663.6709 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1196.4 +,10084,17.96,Typically Developing Children,Female,108,102,113,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3982.0254 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3996.2 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,51424.9 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13196.8 +,10084,17.96,Typically Developing Children,Female,108,102,113,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3614.945 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3508.6 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,394.5 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6331.5 +,10084,17.96,Typically Developing Children,Female,108,102,113,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1339.3119 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1934.9 +,10084,17.96,Typically Developing Children,Female,108,102,113,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4617.7666 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4596.1 +,10084,17.96,Typically Developing Children,Female,108,102,113,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7299.05 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7087.2 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3642.3 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,487.6 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,34.4 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1398142.0 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,108.7 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,194108.27 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,222319.11 +,10084,17.96,Typically Developing Children,Female,108,102,113,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,413.63055 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,642.5 +,10084,17.96,Typically Developing Children,Female,108,102,113,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,611.80084 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1447.1 +,10084,17.96,Typically Developing Children,Female,108,102,113,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4252.0156 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3960.1 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,52207.1 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13162.4 +,10084,17.96,Typically Developing Children,Female,108,102,113,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3612.285 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3332.1 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,423.1 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4745.5 +,10084,17.96,Typically Developing Children,Female,108,102,113,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1502.9021 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1787.7 +,10084,17.96,Typically Developing Children,Female,108,102,113,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4685.5967 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4625.6 +,10084,17.96,Typically Developing Children,Female,108,102,113,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7332.3003 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6677.5 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3702.9 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,694.1 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.8 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,54541.0 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,885297.75 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,897958.75 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,882502.0 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,387526.97 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,440526.75 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,599402.75 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12661.0 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,708.4 +,10084,17.96,Typically Developing Children,Female,108,102,113,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,172847.03 +,10084,17.96,Typically Developing Children,Female,108,102,113,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,558872.06 +,10084,17.96,Typically Developing Children,Female,108,102,113,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10084,17.96,Typically Developing Children,Female,108,102,113,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,427884.2 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,745.5 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1189.8 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10085,11.37,ADHD-Combined,Female,78,79,82,http://purl.org/nidash/fsl#,Background (mm^3),,,1.111025E7 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1055759.0 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1041226.0 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1040920.44 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17983.6 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,860.9 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,489.6 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,431.2 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,482.6 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,766.7 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1045.0 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1235896.4 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,180040.78 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,256862.23 +,10085,11.37,ADHD-Combined,Female,78,79,82,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,518.7007 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,630.4 +,10085,11.37,ADHD-Combined,Female,78,79,82,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,557.27075 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1180.9 +,10085,11.37,ADHD-Combined,Female,78,79,82,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3857.0054 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3559.6 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,44006.6 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11769.3 +,10085,11.37,ADHD-Combined,Female,78,79,82,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3400.8147 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3339.7 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,238.7 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4959.9 +,10085,11.37,ADHD-Combined,Female,78,79,82,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1768.9025 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1882.3 +,10085,11.37,ADHD-Combined,Female,78,79,82,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4932.9766 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5086.0 +,10085,11.37,ADHD-Combined,Female,78,79,82,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8363.052 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6867.1 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3749.5 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,421.6 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,10.2 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1420194.0 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,188.2 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,179523.25 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,255547.17 +,10085,11.37,ADHD-Combined,Female,78,79,82,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,452.20062 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,682.2 +,10085,11.37,ADHD-Combined,Female,78,79,82,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,494.76068 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1351.1 +,10085,11.37,ADHD-Combined,Female,78,79,82,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3817.1052 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3748.0 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,46385.5 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11734.6 +,10085,11.37,ADHD-Combined,Female,78,79,82,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3481.9448 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3352.1 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,257.0 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5773.8 +,10085,11.37,ADHD-Combined,Female,78,79,82,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1650.5322 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1721.1 +,10085,11.37,ADHD-Combined,Female,78,79,82,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5210.9473 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4961.5 +,10085,11.37,ADHD-Combined,Female,78,79,82,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8107.6914 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6711.2 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3586.7 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,646.1 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,54582.0 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,929562.44 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,941335.44 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,926708.0 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,359564.03 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,512409.4 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,658428.44 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11773.0 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,800.6 +,10085,11.37,ADHD-Combined,Female,78,79,82,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,164606.34 +,10085,11.37,ADHD-Combined,Female,78,79,82,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,615089.94 +,10085,11.37,ADHD-Combined,Female,78,79,82,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10085,11.37,ADHD-Combined,Female,78,79,82,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,408244.06 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1144.2 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1969.6 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10086,15.83,ADHD-Combined,Male,102,93,109,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1102021E7 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1256051.0 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1236830.0 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1236759.0 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22091.8 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,981.4 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,659.2 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,867.9 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,586.1 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,757.2 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,934.1 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1514027.5 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,227696.81 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,274222.56 +,10086,15.83,ADHD-Combined,Male,102,93,109,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,613.13086 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,608.4 +,10086,15.83,ADHD-Combined,Male,102,93,109,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1157.1016 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1468.4 +,10086,15.83,ADHD-Combined,Male,102,93,109,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4475.456 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4429.5 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,65734.9 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,18325.7 +,10086,15.83,ADHD-Combined,Male,102,93,109,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3914.1953 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4051.2 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,757.7 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7652.3 +,10086,15.83,ADHD-Combined,Male,102,93,109,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1827.4225 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2542.7 +,10086,15.83,ADHD-Combined,Male,102,93,109,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6427.899 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6514.5 +,10086,15.83,ADHD-Combined,Male,102,93,109,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9145.093 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8066.2 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4584.7 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,531.8 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,43.0 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1646435.0 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,142.7 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,230450.86 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,271908.75 +,10086,15.83,ADHD-Combined,Male,102,93,109,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,690.27094 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,692.1 +,10086,15.83,ADHD-Combined,Male,102,93,109,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,422.94058 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1782.0 +,10086,15.83,ADHD-Combined,Male,102,93,109,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4419.596 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4340.6 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63649.1 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,18514.7 +,10086,15.83,ADHD-Combined,Male,102,93,109,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4218.7656 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4100.5 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,652.3 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5630.5 +,10086,15.83,ADHD-Combined,Male,102,93,109,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2042.8828 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2339.3 +,10086,15.83,ADHD-Combined,Male,102,93,109,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6467.799 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6299.7 +,10086,15.83,ADHD-Combined,Male,102,93,109,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9020.072 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7695.8 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4780.5 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,672.3 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.3 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66019.0 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1074205.0 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1089651.0 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1070256.0 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,458147.7 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,546131.3 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,742564.3 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15446.0 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1065.7 +,10086,15.83,ADHD-Combined,Male,102,93,109,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,207590.67 +,10086,15.83,ADHD-Combined,Male,102,93,109,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,680048.56 +,10086,15.83,ADHD-Combined,Male,102,93,109,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10086,15.83,ADHD-Combined,Male,102,93,109,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,518388.16 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,885.1 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1639.7 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1109189E7 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1088503.0 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1066263.0 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1066385.2 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16434.7 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1118.1 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,535.8 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,508.2 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,525.9 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,924.6 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1111.1 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1343897.1 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,206421.1 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,234918.08 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,577.2208 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,620.6 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1105.2316 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1559.4 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4154.926 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4056.4 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,45482.8 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11609.2 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3591.005 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3300.2 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,398.6 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,9300.5 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1895.2526 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1944.7 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5027.4067 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4957.9 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7239.2 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6907.3 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3715.5 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,728.4 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1520677.0 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,109.4 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,208836.7 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,240761.38 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,434.91058 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,587.7 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1150.4515 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1477.2 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4142.9556 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4054.9 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,50224.6 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11855.8 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3895.5754 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3479.9 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,387.8 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7505.1 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1802.1525 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1673.5 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5355.9175 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5054.2 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7303.04 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6755.1 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3459.3 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,842.2 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,10.7 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55393.0 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,949145.25 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,967964.25 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,946101.0 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,415257.78 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,475679.44 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,628489.44 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,18819.0 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,775.2 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,225702.64 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,573748.2 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10087,17.61,ADHD-Inattentive,Male,95,108,82,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,443571.56 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1006.8 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2125.9 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10088,14.66,Typically Developing Children,Male,126,132,115,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1100557E7 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1461040.0 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1447195.0 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1447331.5 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,24197.5 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1116.5 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,759.4 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,721.7 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,857.8 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1267.6 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1002.9 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1740030.6 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,266590.8 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,336470.94 +,10088,14.66,Typically Developing Children,Male,126,132,115,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,621.11084 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,889.3 +,10088,14.66,Typically Developing Children,Male,126,132,115,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1123.8516 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1687.8 +,10088,14.66,Typically Developing Children,Male,126,132,115,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,5254.8374 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4950.1 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,68043.0 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16353.5 +,10088,14.66,Typically Developing Children,Male,126,132,115,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4894.4067 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4605.1 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,243.6 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4765.4 +,10088,14.66,Typically Developing Children,Male,126,132,115,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2057.513 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2311.1 +,10088,14.66,Typically Developing Children,Male,126,132,115,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6169.8784 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6438.4 +,10088,14.66,Typically Developing Children,Male,126,132,115,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8970.862 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8944.6 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4761.3 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,441.3 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,27.9 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1889020.0 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,164.7 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,268545.3 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,339278.44 +,10088,14.66,Typically Developing Children,Male,126,132,115,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,505.4007 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,844.7 +,10088,14.66,Typically Developing Children,Male,126,132,115,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,904.40125 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1643.9 +,10088,14.66,Typically Developing Children,Male,126,132,115,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5272.1274 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5240.2 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64999.0 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15329.9 +,10088,14.66,Typically Developing Children,Male,126,132,115,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4407.626 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4554.8 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,255.3 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4395.3 +,10088,14.66,Typically Developing Children,Male,126,132,115,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1945.7927 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2078.0 +,10088,14.66,Typically Developing Children,Male,126,132,115,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6156.5786 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6532.3 +,10088,14.66,Typically Developing Children,Male,126,132,115,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8022.5713 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9207.8 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4541.3 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,529.8 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.1 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,71523.0 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1285948.5 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1295983.5 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1282164.0 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,535136.1 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,675749.4 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,881366.4 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10035.0 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1203.8 +,10088,14.66,Typically Developing Children,Male,126,132,115,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,189755.34 +,10088,14.66,Typically Developing Children,Male,126,132,115,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,846809.5 +,10088,14.66,Typically Developing Children,Male,126,132,115,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10088,14.66,Typically Developing Children,Male,126,132,115,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,609847.06 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1059.1 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1944.6 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,1.8 +,10089,14.87,Typically Developing Children,Female,107,106,107,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1110575E7 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1105515.0 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1094637.0 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1094648.5 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18121.8 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,772.5 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,600.8 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,529.5 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,434.9 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,918.0 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1059.9 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1402657.2 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,192844.2 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,259809.67 +,10089,14.87,Typically Developing Children,Female,107,106,107,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,535.9907 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,716.8 +,10089,14.87,Typically Developing Children,Female,107,106,107,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1034.7415 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1470.8 +,10089,14.87,Typically Developing Children,Female,107,106,107,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4029.9055 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3829.3 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53768.8 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12345.9 +,10089,14.87,Typically Developing Children,Female,107,106,107,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3508.545 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3747.9 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,105.5 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2665.7 +,10089,14.87,Typically Developing Children,Female,107,106,107,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1658.5123 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1678.2 +,10089,14.87,Typically Developing Children,Female,107,106,107,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4684.2666 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4785.9 +,10089,14.87,Typically Developing Children,Female,107,106,107,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7666.1304 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6566.1 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3509.3 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,363.6 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1487299.0 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,123.9 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,194636.55 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,261222.03 +,10089,14.87,Typically Developing Children,Female,107,106,107,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,385.70053 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,601.9 +,10089,14.87,Typically Developing Children,Female,107,106,107,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1005.4814 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1592.1 +,10089,14.87,Typically Developing Children,Female,107,106,107,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4169.5557 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3926.1 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54349.1 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12316.6 +,10089,14.87,Typically Developing Children,Female,107,106,107,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3326.3345 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3775.2 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,281.5 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3040.0 +,10089,14.87,Typically Developing Children,Female,107,106,107,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1717.0323 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1607.9 +,10089,14.87,Typically Developing Children,Female,107,106,107,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5083.267 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5008.4 +,10089,14.87,Typically Developing Children,Female,107,106,107,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7483.9204 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6282.9 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3560.0 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,364.9 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,17.8 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,54217.0 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,964688.44 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,971261.44 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,962605.0 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,387480.75 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,521031.7 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,683397.7 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6573.0 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,987.3 +,10089,14.87,Typically Developing Children,Female,107,106,107,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,186075.23 +,10089,14.87,Typically Developing Children,Female,107,106,107,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,667857.75 +,10089,14.87,Typically Developing Children,Female,107,106,107,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10089,14.87,Typically Developing Children,Female,107,106,107,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,455110.66 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,831.9 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1422.6 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10090,16.32,ADHD-Combined,Male,94,93,96,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1105733E7 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1267259.0 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1250493.0 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1250975.5 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21156.7 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1071.7 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,574.0 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,588.1 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,613.0 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,941.7 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,800.2 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1577941.5 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,240423.58 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,281791.9 +,10090,16.32,ADHD-Combined,Male,94,93,96,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,609.14087 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,736.0 +,10090,16.32,ADHD-Combined,Male,94,93,96,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,958.93134 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1689.5 +,10090,16.32,ADHD-Combined,Male,94,93,96,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4091.0857 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3979.3 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56332.4 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13695.2 +,10090,16.32,ADHD-Combined,Male,94,93,96,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3670.8052 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3710.8 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,318.5 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6113.8 +,10090,16.32,ADHD-Combined,Male,94,93,96,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2017.6128 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2242.4 +,10090,16.32,ADHD-Combined,Male,94,93,96,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5777.528 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5288.5 +,10090,16.32,ADHD-Combined,Male,94,93,96,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8650.332 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7888.6 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4573.4 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,478.9 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,103.1 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1677966.0 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,102.1 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,240365.7 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,282882.28 +,10090,16.32,ADHD-Combined,Male,94,93,96,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,444.2206 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,613.0 +,10090,16.32,ADHD-Combined,Male,94,93,96,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1020.1114 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1894.7 +,10090,16.32,ADHD-Combined,Male,94,93,96,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4168.2256 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4265.3 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58612.5 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14154.7 +,10090,16.32,ADHD-Combined,Male,94,93,96,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3918.1853 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3899.0 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,339.2 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6924.9 +,10090,16.32,ADHD-Combined,Male,94,93,96,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2000.3228 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2167.1 +,10090,16.32,ADHD-Combined,Male,94,93,96,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5445.0273 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5318.3 +,10090,16.32,ADHD-Combined,Male,94,93,96,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8359.062 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7920.4 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4414.4 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,429.9 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,177.1 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62609.0 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1111215.5 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1125170.5 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1107747.0 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,480789.28 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,564674.2 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,742921.2 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13955.0 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1395.0 +,10090,16.32,ADHD-Combined,Male,94,93,96,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,208050.86 +,10090,16.32,ADHD-Combined,Male,94,93,96,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,683033.06 +,10090,16.32,ADHD-Combined,Male,94,93,96,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10090,16.32,ADHD-Combined,Male,94,93,96,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,525075.44 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,974.6 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2224.6 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10091,8.93,ADHD-Combined,Male,83,93,77,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1109722E7 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1196633.0 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1178223.0 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1178194.8 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19342.4 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,956.9 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,625.6 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,609.9 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,475.6 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,752.8 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1122.7 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1534859.8 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,203528.61 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,287843.88 +,10091,8.93,ADHD-Combined,Male,83,93,77,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,694.261 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,800.6 +,10091,8.93,ADHD-Combined,Male,83,93,77,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,790.0211 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1394.9 +,10091,8.93,ADHD-Combined,Male,83,93,77,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3471.3047 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3589.8 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56192.4 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12649.6 +,10091,8.93,ADHD-Combined,Male,83,93,77,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3350.2747 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3516.3 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,283.0 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8514.9 +,10091,8.93,ADHD-Combined,Male,83,93,77,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1764.9125 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1761.1 +,10091,8.93,ADHD-Combined,Male,83,93,77,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4786.677 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5209.7 +,10091,8.93,ADHD-Combined,Male,83,93,77,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8696.882 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7995.4 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3690.1 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,408.7 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,9.2 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1585646.0 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,154.9 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,204576.53 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,289545.66 +,10091,8.93,ADHD-Combined,Male,83,93,77,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,449.54062 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,631.9 +,10091,8.93,ADHD-Combined,Male,83,93,77,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,341.8105 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1719.4 +,10091,8.93,ADHD-Combined,Male,83,93,77,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3842.3752 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3890.5 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54133.4 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11467.4 +,10091,8.93,ADHD-Combined,Male,83,93,77,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3636.225 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3805.3 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,281.6 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4841.1 +,10091,8.93,ADHD-Combined,Male,83,93,77,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1721.0223 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1698.1 +,10091,8.93,ADHD-Combined,Male,83,93,77,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5180.357 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5076.6 +,10091,8.93,ADHD-Combined,Male,83,93,77,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8416.252 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7734.7 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3748.0 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,665.3 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,17.8 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58353.0 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1046612.7 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1060926.8 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1043739.0 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,408105.16 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,577389.56 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,746929.56 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14314.0 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1010.0 +,10091,8.93,ADHD-Combined,Male,83,93,77,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,192398.06 +,10091,8.93,ADHD-Combined,Male,83,93,77,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,741667.56 +,10091,8.93,ADHD-Combined,Male,83,93,77,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10091,8.93,ADHD-Combined,Male,83,93,77,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,487673.1 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,888.6 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1445.1 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10092,17.3,Typically Developing Children,Male,109,104,113,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1108459E7 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1070461.0 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1055038.0 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1054572.2 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17887.0 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1088.2 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,669.2 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,702.5 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,547.8 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,806.8 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1126.3 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1465510.4 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,210027.03 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,226073.9 +,10092,17.3,Typically Developing Children,Male,109,104,113,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,408.30823 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,773.2 +,10092,17.3,Typically Developing Children,Male,109,104,113,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,653.02716 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1502.4 +,10092,17.3,Typically Developing Children,Male,109,104,113,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3682.754 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3456.5 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,45740.8 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11043.6 +,10092,17.3,Typically Developing Children,Male,109,104,113,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3892.893 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4042.8 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,279.7 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5617.8 +,10092,17.3,Typically Developing Children,Male,109,104,113,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1812.7821 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2113.1 +,10092,17.3,Typically Developing Children,Male,109,104,113,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5224.2173 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5383.5 +,10092,17.3,Typically Developing Children,Male,109,104,113,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8255.274 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7642.9 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4264.2 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,645.8 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,3.3 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1533685.0 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,79.1 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,207793.61 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,232414.7 +,10092,17.3,Typically Developing Children,Male,109,104,113,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,349.78848 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,782.2 +,10092,17.3,Typically Developing Children,Male,109,104,113,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,845.87634 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1570.5 +,10092,17.3,Typically Developing Children,Male,109,104,113,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4072.4421 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3754.7 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,49447.2 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12029.6 +,10092,17.3,Typically Developing Children,Male,109,104,113,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3958.0627 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4210.1 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,731.7 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4916.5 +,10092,17.3,Typically Developing Children,Male,109,104,113,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1590.6731 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1951.3 +,10092,17.3,Typically Developing Children,Male,109,104,113,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5691.0454 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5338.7 +,10092,17.3,Typically Developing Children,Male,109,104,113,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7904.156 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7589.9 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3982.7 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,533.9 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,9.9 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60405.0 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,938469.25 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,950701.25 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,937091.0 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,417820.66 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,458488.6 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,614626.6 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12232.0 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1753.4 +,10092,17.3,Typically Developing Children,Male,109,104,113,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,232326.05 +,10092,17.3,Typically Developing Children,Male,109,104,113,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,613288.25 +,10092,17.3,Typically Developing Children,Male,109,104,113,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10092,17.3,Typically Developing Children,Male,109,104,113,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,500085.8 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,760.1 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,3347.6 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1114421E7 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,995606.0 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,968864.0 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,968983.56 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18676.9 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,901.5 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,431.4 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,505.3 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,514.4 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,843.4 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,655.3 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1244060.2 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,183799.48 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,214888.58 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,590.51746 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,634.9 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,824.59644 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1301.9 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3177.3562 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3014.4 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,47970.6 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12416.5 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2906.0374 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3112.4 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,970.2 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,13331.2 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1625.2529 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1605.5 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4418.2407 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4341.8 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6900.01 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6041.5 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3487.5 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,401.8 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,47.8 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1369276.0 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,192.1 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,184782.17 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,217096.33 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,418.94818 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,548.9 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1028.0856 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1352.5 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3242.526 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2999.2 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,47242.7 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11844.3 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3628.224 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3497.0 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,453.6 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7062.1 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1492.2535 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1538.2 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4911.6685 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4504.7 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7215.2188 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6028.7 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3763.6 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,512.2 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,5.3 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,49603.0 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,851820.56 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,874049.56 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,849911.0 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,368581.66 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,431984.9 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,577147.9 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,22229.0 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,822.5 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,182985.92 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,570767.0 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10093,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,433306.78 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,878.6 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2287.5 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1114299E7 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,959735.0 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,935731.0 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,935814.5 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15961.8 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,846.3 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,645.4 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,530.7 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,578.2 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,866.3 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,772.1 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1148826.0 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,180309.83 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,208131.19 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,563.9208 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,754.4 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,823.2711 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,969.3 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3132.1543 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2899.4 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,44398.9 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12647.5 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3114.8643 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3023.6 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,436.5 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,13096.9 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1588.0222 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1828.8 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4966.227 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4586.2 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6841.5293 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6515.9 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3274.2 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,351.0 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1371149.0 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,147.3 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,180755.61 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,204014.92 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,485.45068 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,662.2 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,949.62134 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1263.0 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3160.0845 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2919.5 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,44423.2 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11238.8 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3698.735 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3463.4 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,449.2 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5924.1 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1561.4221 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1657.1 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4930.317 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4628.4 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6749.7593 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6265.7 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3423.2 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,537.5 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,50068.0 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,825554.5 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,845845.5 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,823058.0 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,361065.44 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,412146.1 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,551529.1 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,20291.0 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1329.4 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,207859.34 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,508519.56 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10094,15.21,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,399935.53 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,791.0 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1263.9 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10095,14.39,ADHD-Combined,Male,81,84,81,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1108904E7 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1227849.0 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1211386.0 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1211452.4 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18288.0 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,966.9 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,440.9 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,529.0 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,489.1 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,798.2 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,751.3 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1511850.2 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,218503.4 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,293213.38 +,10095,14.39,ADHD-Combined,Male,81,84,81,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,582.5408 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,676.0 +,10095,14.39,ADHD-Combined,Male,81,84,81,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1102.5715 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1592.2 +,10095,14.39,ADHD-Combined,Male,81,84,81,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4000.6455 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3884.3 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,50736.6 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11243.2 +,10095,14.39,ADHD-Combined,Male,81,84,81,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3919.5154 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3917.7 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,280.3 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6357.7 +,10095,14.39,ADHD-Combined,Male,81,84,81,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1846.0425 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2147.7 +,10095,14.39,ADHD-Combined,Male,81,84,81,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4621.7563 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4583.6 +,10095,14.39,ADHD-Combined,Male,81,84,81,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7925.481 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7746.3 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3692.9 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,426.3 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.1 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1591985.0 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,185.7 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,220410.38 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,294710.22 +,10095,14.39,ADHD-Combined,Male,81,84,81,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,384.37054 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,670.6 +,10095,14.39,ADHD-Combined,Male,81,84,81,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,492.10068 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1911.4 +,10095,14.39,ADHD-Combined,Male,81,84,81,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4228.0757 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3994.2 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,51808.3 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10937.1 +,10095,14.39,ADHD-Combined,Male,81,84,81,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3967.3955 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4123.2 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,458.2 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6271.9 +,10095,14.39,ADHD-Combined,Male,81,84,81,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1933.8226 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1836.9 +,10095,14.39,ADHD-Combined,Male,81,84,81,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4508.706 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4708.0 +,10095,14.39,ADHD-Combined,Male,81,84,81,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8446.842 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7621.9 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3914.3 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,575.3 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,44.6 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59157.0 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1089147.4 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1103067.4 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1085835.0 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,438913.78 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,587923.6 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,751100.6 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13920.0 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1370.4 +,10095,14.39,ADHD-Combined,Male,81,84,81,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,183594.78 +,10095,14.39,ADHD-Combined,Male,81,84,81,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,727496.4 +,10095,14.39,ADHD-Combined,Male,81,84,81,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10095,14.39,ADHD-Combined,Male,81,84,81,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,504646.6 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,818.4 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1741.1 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1106655E7 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1353519.0 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1337507.0 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1338031.4 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18492.8 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1088.3 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,818.8 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,903.5 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,783.8 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1255.6 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1319.3 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1625318.2 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,248841.67 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,308236.62 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,775.3866 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,861.4 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,614.45734 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1461.8 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4244.0117 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4034.2 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60096.4 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14566.8 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3843.6833 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3783.5 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,272.5 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6228.0 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1855.3419 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2006.4 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5802.7646 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5720.1 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8769.981 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8830.8 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4215.2 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,438.9 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,50.7 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1794759.0 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,155.0 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,252718.25 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,311410.88 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,633.0773 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,844.7 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,524.0177 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1559.1 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4327.8013 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4179.6 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63877.3 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15004.6 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3564.3845 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3817.3 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,168.9 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5281.7 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1705.0526 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1846.8 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5760.205 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5636.6 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7724.6064 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8203.3 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4461.3 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,709.7 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.7 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63478.0 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1187553.4 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1200039.4 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1184058.0 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,501559.9 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,619647.5 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,808122.5 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12486.0 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,669.4 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,236197.66 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,714996.9 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10096,14.94,ADHD-Inattentive,Male,113,104,119,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,527700.5 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,870.1 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2157.6 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10097,14.38,Typically Developing Children,Female,123,120,119,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1108932E7 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1285411.0 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1248058.0 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1248064.4 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22349.2 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1187.4 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,570.4 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,574.0 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,510.4 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1208.5 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1471.1 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1643335.4 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,224292.81 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,290826.03 +,10097,14.38,Typically Developing Children,Female,123,120,119,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,509.3907 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,547.3 +,10097,14.38,Typically Developing Children,Female,123,120,119,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,969.57135 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1330.5 +,10097,14.38,Typically Developing Children,Female,123,120,119,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3888.9253 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3956.6 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,66928.3 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16382.6 +,10097,14.38,Typically Developing Children,Female,123,120,119,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3391.5046 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3457.1 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,205.1 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,16756.8 +,10097,14.38,Typically Developing Children,Female,123,120,119,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1727.6724 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1900.0 +,10097,14.38,Typically Developing Children,Female,123,120,119,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4776.0366 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4594.5 +,10097,14.38,Typically Developing Children,Female,123,120,119,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8656.981 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7745.6 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4107.6 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,589.8 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,4.6 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1705734.0 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,152.5 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,222434.42 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,286955.1 +,10097,14.38,Typically Developing Children,Female,123,120,119,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,557.27075 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,517.7 +,10097,14.38,Typically Developing Children,Female,123,120,119,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,558.60077 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1433.6 +,10097,14.38,Typically Developing Children,Female,123,120,119,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4045.8655 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4089.5 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,65885.0 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,17003.4 +,10097,14.38,Typically Developing Children,Female,123,120,119,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3777.205 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3980.2 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,237.3 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,14753.2 +,10097,14.38,Typically Developing Children,Female,123,120,119,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1732.9924 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1793.2 +,10097,14.38,Typically Developing Children,Female,123,120,119,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4766.7266 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4791.0 +,10097,14.38,Typically Developing Children,Female,123,120,119,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8573.191 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7797.7 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3777.3 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,837.9 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58069.0 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1084895.4 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1117964.4 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1082452.0 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,446727.25 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,577781.1 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,768860.1 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,33069.0 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1156.1 +,10097,14.38,Typically Developing Children,Female,123,120,119,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,216851.48 +,10097,14.38,Typically Developing Children,Female,123,120,119,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,723788.3 +,10097,14.38,Typically Developing Children,Female,123,120,119,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10097,14.38,Typically Developing Children,Female,123,120,119,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,533478.4 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,850.6 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1468.4 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10098,7.6,ADHD-Combined,Male,100,98,101,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1109166E7 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1159342.0 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1148755.0 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1149112.6 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19450.9 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,883.9 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,514.9 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,520.3 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,394.3 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,784.9 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,854.6 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1427740.1 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,200949.25 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,268943.53 +,10098,7.6,ADHD-Combined,Male,100,98,101,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,618.4473 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,788.3 +,10098,7.6,ADHD-Combined,Male,100,98,101,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1025.4255 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1463.8 +,10098,7.6,ADHD-Combined,Male,100,98,101,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3706.6938 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3448.4 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62643.1 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16389.1 +,10098,7.6,ADHD-Combined,Male,100,98,101,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2999.137 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3051.9 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,336.8 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3736.0 +,10098,7.6,ADHD-Combined,Male,100,98,101,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1875.2919 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2215.1 +,10098,7.6,ADHD-Combined,Male,100,98,101,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5954.3843 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6178.9 +,10098,7.6,ADHD-Combined,Male,100,98,101,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8420.193 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7680.7 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3975.9 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,331.7 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,1.2 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1538870.0 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,185.5 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,196419.86 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,266450.03 +,10098,7.6,ADHD-Combined,Male,100,98,101,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,542.63763 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,744.3 +,10098,7.6,ADHD-Combined,Male,100,98,101,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,863.16626 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1667.0 +,10098,7.6,ADHD-Combined,Male,100,98,101,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3430.055 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3744.3 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60975.7 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15546.7 +,10098,7.6,ADHD-Combined,Male,100,98,101,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3061.6467 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3261.6 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,302.2 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2615.0 +,10098,7.6,ADHD-Combined,Male,100,98,101,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1748.9424 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2257.4 +,10098,7.6,ADHD-Combined,Male,100,98,101,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6099.3535 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6446.9 +,10098,7.6,ADHD-Combined,Male,100,98,101,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7288.368 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7450.8 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4243.4 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,360.4 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,3.1 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60854.0 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,995988.6 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1003417.6 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,993064.0 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,397369.12 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,535393.56 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,720954.56 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7429.0 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1495.6 +,10098,7.6,ADHD-Combined,Male,100,98,101,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,166833.14 +,10098,7.6,ADHD-Combined,Male,100,98,101,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,695229.2 +,10098,7.6,ADHD-Combined,Male,100,98,101,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10098,7.6,ADHD-Combined,Male,100,98,101,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,462429.7 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1084.1 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1401.5 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10099,9.96,Typically Developing Children,Female,110,99,120,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1109338E7 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1243909.0 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1231092.0 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1231203.8 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16738.1 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,818.5 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,481.9 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,611.0 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,447.6 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,751.2 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,845.6 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1551974.0 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,218905.9 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,300498.16 +,10099,9.96,Typically Developing Children,Female,110,99,120,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,469.49066 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,718.2 +,10099,9.96,Typically Developing Children,Female,110,99,120,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,803.3211 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1545.2 +,10099,9.96,Typically Developing Children,Female,110,99,120,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3955.4255 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3413.7 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56834.1 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11701.6 +,10099,9.96,Typically Developing Children,Female,110,99,120,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3435.3948 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3866.2 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,298.3 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3437.8 +,10099,9.96,Typically Developing Children,Female,110,99,120,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1609.3022 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1818.9 +,10099,9.96,Typically Developing Children,Female,110,99,120,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5709.6978 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5519.6 +,10099,9.96,Typically Developing Children,Female,110,99,120,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7678.1006 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7760.0 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3699.5 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,375.6 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,5.1 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1644652.0 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,138.4 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,220428.31 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,296044.4 +,10099,9.96,Typically Developing Children,Female,110,99,120,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,375.06052 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,543.0 +,10099,9.96,Typically Developing Children,Female,110,99,120,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,835.24115 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1761.0 +,10099,9.96,Typically Developing Children,Female,110,99,120,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3963.4055 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3791.8 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55708.2 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12208.5 +,10099,9.96,Typically Developing Children,Female,110,99,120,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3404.8047 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3840.2 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,284.5 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5201.1 +,10099,9.96,Typically Developing Children,Female,110,99,120,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1786.1925 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1586.0 +,10099,9.96,Typically Developing Children,Female,110,99,120,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5975.698 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5799.6 +,10099,9.96,Typically Developing Children,Female,110,99,120,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7525.1504 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8031.5 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3694.7 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,566.3 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,23.5 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59398.0 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1097777.8 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1107447.8 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1095026.0 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,439334.22 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,596542.56 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,768632.56 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9670.0 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1032.5 +,10099,9.96,Typically Developing Children,Female,110,99,120,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,167182.56 +,10099,9.96,Typically Developing Children,Female,110,99,120,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,757627.56 +,10099,9.96,Typically Developing Children,Female,110,99,120,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10099,9.96,Typically Developing Children,Female,110,99,120,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,507283.97 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1278.3 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1516.2 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10100,16.88,Typically Developing Children,Male,125,123,121,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1097599E7 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1394570.0 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1369764.0 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1370304.4 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,24188.5 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,994.2 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,535.1 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,608.5 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,600.3 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1187.6 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1505.7 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1803524.9 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,266562.75 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,297320.97 +,10100,16.88,Typically Developing Children,Male,125,123,121,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,764.74664 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,954.7 +,10100,16.88,Typically Developing Children,Male,125,123,121,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1291.4243 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1938.5 +,10100,16.88,Typically Developing Children,Male,125,123,121,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,5117.818 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4810.7 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,67183.9 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,17366.9 +,10100,16.88,Typically Developing Children,Male,125,123,121,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4500.7 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4448.9 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,540.1 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,9259.6 +,10100,16.88,Typically Developing Children,Male,125,123,121,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2364.7297 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2464.0 +,10100,16.88,Typically Developing Children,Male,125,123,121,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6289.5425 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6546.5 +,10100,16.88,Typically Developing Children,Male,125,123,121,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9332.569 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8399.5 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4900.3 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,855.3 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,12.9 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1883252.0 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,166.7 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,267036.56 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,302461.03 +,10100,16.88,Typically Developing Children,Male,125,123,121,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,611.79736 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,985.7 +,10100,16.88,Typically Developing Children,Male,125,123,121,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1413.7838 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1904.9 +,10100,16.88,Typically Developing Children,Male,125,123,121,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5278.747 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5081.9 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64885.2 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,16967.3 +,10100,16.88,Typically Developing Children,Male,125,123,121,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4283.911 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4349.4 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,422.3 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,9263.2 +,10100,16.88,Typically Developing Children,Male,125,123,121,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2131.9807 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2062.0 +,10100,16.88,Typically Developing Children,Male,125,123,121,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6635.3413 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6323.2 +,10100,16.88,Typically Developing Children,Male,125,123,121,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9183.61 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8814.6 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4776.4 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,902.5 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,22.5 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,70868.0 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1207023.4 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1227753.4 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1203595.0 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,533599.3 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,599782.0 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,803595.0 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,20730.0 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1011.6 +,10100,16.88,Typically Developing Children,Male,125,123,121,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,230644.94 +,10100,16.88,Typically Developing Children,Male,125,123,121,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,751844.4 +,10100,16.88,Typically Developing Children,Male,125,123,121,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10100,16.88,Typically Developing Children,Male,125,123,121,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,619065.75 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,639.8 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1441.6 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10101,14.2,ADHD-Combined,Male,92,79,107,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1111814E7 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1065270.0 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1049817.0 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1050498.8 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16362.1 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,667.2 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,447.1 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,530.0 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,427.3 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,639.4 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,699.3 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1322897.1 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,192168.47 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,253291.6 +,10101,14.2,ADHD-Combined,Male,92,79,107,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,613.13086 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,658.3 +,10101,14.2,ADHD-Combined,Male,92,79,107,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,702.24097 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1393.8 +,10101,14.2,ADHD-Combined,Male,92,79,107,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3609.625 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3760.7 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,46875.0 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10667.0 +,10101,14.2,ADHD-Combined,Male,92,79,107,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3250.5244 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3116.4 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,488.0 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7197.4 +,10101,14.2,ADHD-Combined,Male,92,79,107,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1617.2822 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1929.9 +,10101,14.2,ADHD-Combined,Male,92,79,107,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5093.907 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5008.5 +,10101,14.2,ADHD-Combined,Male,92,79,107,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7349.5903 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7057.9 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3946.2 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,459.7 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,30.8 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1399163.0 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,94.3 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,187615.31 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,243407.31 +,10101,14.2,ADHD-Combined,Male,92,79,107,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,453.53064 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,614.2 +,10101,14.2,ADHD-Combined,Male,92,79,107,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,807.3111 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1560.7 +,10101,14.2,ADHD-Combined,Male,92,79,107,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3904.8853 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3776.4 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,48280.1 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11606.5 +,10101,14.2,ADHD-Combined,Male,92,79,107,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3338.3047 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3283.5 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,335.7 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4379.1 +,10101,14.2,ADHD-Combined,Male,92,79,107,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1631.9122 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1798.6 +,10101,14.2,ADHD-Combined,Male,92,79,107,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5180.357 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5000.2 +,10101,14.2,ADHD-Combined,Male,92,79,107,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7497.22 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7255.0 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3880.3 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,568.5 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,23.0 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55926.0 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,935281.7 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,948287.7 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,931681.0 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,379783.78 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,496698.9 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,649084.94 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13006.0 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,933.5 +,10101,14.2,ADHD-Combined,Male,92,79,107,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,153135.08 +,10101,14.2,ADHD-Combined,Male,92,79,107,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,611678.5 +,10101,14.2,ADHD-Combined,Male,92,79,107,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10101,14.2,ADHD-Combined,Male,92,79,107,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,431222.5 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1130.3 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1781.6 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10102,16.55,Typically Developing Children,Male,91,96,88,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1104172E7 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1274804.0 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1257312.0 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1257528.6 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20938.8 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1021.6 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,921.2 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,771.2 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,592.0 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1110.0 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,970.6 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1766963.1 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,253863.0 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,286164.22 +,10102,16.55,Typically Developing Children,Male,91,96,88,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,528.01074 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,903.8 +,10102,16.55,Typically Developing Children,Male,91,96,88,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1050.7014 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1889.1 +,10102,16.55,Typically Developing Children,Male,91,96,88,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3876.9553 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3646.9 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,49746.2 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12350.7 +,10102,16.55,Typically Developing Children,Male,91,96,88,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4361.076 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4489.0 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,581.7 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6585.4 +,10102,16.55,Typically Developing Children,Male,91,96,88,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1937.8126 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2075.1 +,10102,16.55,Typically Developing Children,Male,91,96,88,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6107.368 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5927.6 +,10102,16.55,Typically Developing Children,Male,91,96,88,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8449.502 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8466.9 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4600.3 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,497.3 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,32.5 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1865748.0 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,142.0 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,251287.9 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,277997.5 +,10102,16.55,Typically Developing Children,Male,91,96,88,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,395.01056 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,871.2 +,10102,16.55,Typically Developing Children,Male,91,96,88,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1274.1417 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2255.6 +,10102,16.55,Typically Developing Children,Male,91,96,88,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3834.3953 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3657.4 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,47366.8 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11614.7 +,10102,16.55,Typically Developing Children,Male,91,96,88,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4399.646 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4721.1 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,363.2 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5999.4 +,10102,16.55,Typically Developing Children,Male,91,96,88,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2001.6527 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2002.5 +,10102,16.55,Typically Developing Children,Male,91,96,88,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5829.398 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5955.3 +,10102,16.55,Typically Developing Children,Male,91,96,88,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8646.342 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8444.9 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4684.9 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,548.6 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,22.9 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67103.0 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1138388.6 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1152283.6 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1136086.0 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,505150.9 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,564161.7 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,729433.7 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13895.0 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1921.7 +,10102,16.55,Typically Developing Children,Male,91,96,88,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,276826.6 +,10102,16.55,Typically Developing Children,Male,91,96,88,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,714233.56 +,10102,16.55,Typically Developing Children,Male,91,96,88,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10102,16.55,Typically Developing Children,Male,91,96,88,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,587473.75 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1237.8 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1447.8 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10103,9.59,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Background (mm^3),,,1.111326E7 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1244572.0 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1228217.0 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1227489.8 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17814.4 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1057.2 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,624.4 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,508.7 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,431.7 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,633.8 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1323.6 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1488361.8 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,208987.03 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,293116.16 +,10103,9.59,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,311.22043 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,692.0 +,10103,9.59,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,897.7512 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1572.2 +,10103,9.59,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3916.8555 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3883.2 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,67346.7 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14459.6 +,10103,9.59,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2944.624 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3628.9 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,285.4 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5233.3 +,10103,9.59,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1647.8723 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1853.6 +,10103,9.59,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4345.116 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4706.1 +,10103,9.59,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7386.83 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7883.6 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4157.1 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,520.5 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1684069.0 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,123.7 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,210496.89 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,294714.62 +,10103,9.59,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,355.11047 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,595.7 +,10103,9.59,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,892.4312 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1748.9 +,10103,9.59,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3988.6755 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3936.0 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,66280.5 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13110.6 +,10103,9.59,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3364.9045 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3555.3 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,288.1 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6178.9 +,10103,9.59,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1703.7323 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1693.2 +,10103,9.59,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4319.8457 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4612.8 +,10103,9.59,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7529.14 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7670.6 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4124.9 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,431.9 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.6 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58490.0 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1068938.8 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1081442.8 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1066423.0 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,419483.94 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,587830.8 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,780604.8 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12504.0 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,884.4 +,10103,9.59,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,210073.8 +,10103,9.59,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,766323.1 +,10103,9.59,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10103,9.59,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,503042.6 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1186.7 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2535.5 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1104606E7 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1431650.0 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1387096.0 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1387336.5 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21426.7 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1276.9 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,558.3 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,691.6 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,532.0 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1164.5 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1017.3 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1805595.1 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,261203.61 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,318201.84 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,714.211 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,709.3 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1038.7314 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1859.1 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4337.1357 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4468.5 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,66676.0 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15915.0 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2452.5234 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3800.6 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,298.4 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,25483.3 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2064.1628 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2188.7 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5985.0083 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5820.0 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9038.692 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7977.6 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4306.2 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,560.9 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,33.8 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1815844.0 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,137.3 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,259611.31 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,317414.7 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,593.1808 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,686.5 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,706.23096 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1790.5 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4585.846 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4567.5 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,67305.4 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,16312.4 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3906.2153 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3978.9 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,251.2 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,13207.1 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2000.3228 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2023.8 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5737.628 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5793.1 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9098.543 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7883.8 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4454.8 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,696.3 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,3.7 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64356.0 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1224463.5 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1264561.5 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1220447.0 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,520814.9 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,635616.56 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,835211.56 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,40098.0 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1396.4 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,218144.23 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,800169.0 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10104,13.35,ADHD-Inattentive,Male,123,114,127,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,594041.3 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,722.8 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1133.4 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1121816E7 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,924381.0 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,915759.0 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,915728.06 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,13029.6 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,740.5 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,523.5 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,427.7 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,360.7 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,727.7 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,833.1 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1113813.1 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,149921.78 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,230500.94 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,329.84045 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,482.0 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,634.4109 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1004.5 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3700.0652 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3450.9 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,48377.3 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10011.1 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,1936.4827 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2910.4 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,335.4 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2768.0 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1470.982 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1509.0 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,3888.9253 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4420.6 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,5555.4175 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6349.6 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3083.1 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,229.6 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,11.5 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1238456.0 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,86.5 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,149683.03 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,224319.31 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,162.26022 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,471.0 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,694.261 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,931.3 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3988.6755 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3599.5 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,46956.5 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,9531.7 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2625.4236 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2914.6 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,184.1 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2625.1 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1449.702 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1489.7 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,3995.3254 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4147.2 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,4616.4365 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6088.8 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,2960.2 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,405.0 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,7.6 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,47325.0 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,803753.06 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,809809.06 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,801697.0 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,299604.8 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,454820.25 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,597437.25 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6056.0 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1188.7 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,145188.31 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,568917.56 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10105,7.43,ADHD-Inattentive,Female,99,103,95,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,349532.47 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,857.3 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2031.1 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1114251E7 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1143833.0 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1129346.0 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1129472.6 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17974.1 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,961.4 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,638.7 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,654.1 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,497.6 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,802.9 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,920.3 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1425743.1 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,184192.2 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,272219.6 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,524.02075 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,639.7 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,836.57117 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1273.2 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3366.2346 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3570.0 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,65112.2 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13402.9 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3350.2747 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3672.7 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,239.9 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5300.2 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1466.9921 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1860.5 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4470.136 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4932.0 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6861.4795 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6487.2 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3973.8 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,380.1 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,46.3 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1492848.0 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,124.1 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,188123.22 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,276730.62 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,518.7007 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,620.6 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,787.3611 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1476.6 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3706.715 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3697.2 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62190.7 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12897.7 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3423.4248 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3888.0 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,197.7 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4713.7 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1566.7422 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1732.3 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4902.3867 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4879.1 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6832.219 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6550.6 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3677.0 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,557.9 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,52.9 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,54873.0 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,978655.6 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,989576.6 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,975942.0 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,372315.4 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,548950.25 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,731527.25 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10921.0 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,913.0 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,169758.78 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,701748.9 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10106,11.82,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,441242.75 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,740.9 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2010.9 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1112856E7 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1158286.0 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1146642.0 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1146989.6 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18437.0 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,824.6 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,754.1 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,659.6 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,465.2 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,986.0 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1098.5 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1233957.6 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,227574.83 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,246257.98 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,287.2804 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,613.2 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,921.6913 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1482.9 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3262.4944 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2937.4 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61697.7 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13488.0 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3579.035 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3506.8 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,254.0 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3913.1 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1772.8925 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1894.7 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5175.037 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4856.3 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7894.8906 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7966.4 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4054.0 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,430.1 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,7.3 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1589364.0 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,151.1 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,223113.83 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,245603.05 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,320.53046 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,616.4 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,831.25116 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1583.7 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3386.1846 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3133.8 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58428.4 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15056.0 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3380.8647 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3589.7 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,167.7 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3255.1 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1683.7823 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1640.9 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5252.1772 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4902.2 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6260.319 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7253.5 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4137.0 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,488.5 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,11.5 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55585.0 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1001334.7 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1009315.7 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,997651.0 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,450688.66 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,491861.03 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,668589.0 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7981.0 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,717.9 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,205968.08 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,600207.2 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10107,17.37,ADHD-Inattentive,Male,102,99,104,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,496379.28 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,722.0 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1975.6 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1106949E7 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1116343.0 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1104021.0 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1103844.1 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18344.2 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,958.1 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,688.9 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,512.4 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,510.6 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,804.8 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,954.5 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1333417.9 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,211676.42 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,246817.52 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,696.92096 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,667.7 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1048.0415 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1152.6 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3879.6152 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3780.4 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,49903.7 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13808.5 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3698.735 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3439.7 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,247.7 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4443.3 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1798.1625 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1925.2 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6152.5884 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5922.9 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8013.261 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7694.5 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4098.3 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,421.6 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.5 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1511084.0 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,155.5 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,214436.69 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,245742.52 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,466.83063 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,681.8 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1283.4518 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1458.9 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4023.2556 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3925.3 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,48435.4 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13673.6 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3898.2354 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3347.4 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,361.6 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3561.7 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1935.1527 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1764.4 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5821.418 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5817.6 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7199.3 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7503.4 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4086.5 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,542.0 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,9.9 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58990.0 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,980782.1 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,989743.1 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,977710.0 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,426113.12 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,492560.03 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,651175.06 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8961.0 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,803.3 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,206883.11 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,573145.7 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10108,17.15,ADHD-Inattentive,Female,115,115,116,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,443326.84 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,834.4 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1823.9 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10109,16.08,ADHD-Combined,Female,115,105,122,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1106744E7 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1132901.0 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1108266.0 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1108232.1 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19476.0 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1000.5 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,448.5 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,441.7 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,467.1 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1017.8 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,851.7 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1448440.8 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,199106.64 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,252230.9 +,10109,16.08,ADHD-Combined,Female,115,105,122,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,655.6909 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,668.3 +,10109,16.08,ADHD-Combined,Female,115,105,122,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1129.1715 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1537.4 +,10109,16.08,ADHD-Combined,Female,115,105,122,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3222.5945 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3157.9 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57295.3 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14878.7 +,10109,16.08,ADHD-Combined,Female,115,105,122,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3960.7454 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4039.7 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,424.0 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7567.2 +,10109,16.08,ADHD-Combined,Female,115,105,122,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1752.9424 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1961.3 +,10109,16.08,ADHD-Combined,Female,115,105,122,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6143.2783 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6272.7 +,10109,16.08,ADHD-Combined,Female,115,105,122,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8356.401 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7861.7 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4394.8 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,411.6 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,47.0 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1531342.0 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,120.4 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,196879.12 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,255424.52 +,10109,16.08,ADHD-Combined,Female,115,105,122,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,546.63074 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,648.8 +,10109,16.08,ADHD-Combined,Female,115,105,122,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1139.8115 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1680.1 +,10109,16.08,ADHD-Combined,Female,115,105,122,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3285.1045 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3280.2 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57225.8 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14002.8 +,10109,16.08,ADHD-Combined,Female,115,105,122,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3990.0054 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4250.8 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,545.2 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,12437.9 +,10109,16.08,ADHD-Combined,Female,115,105,122,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1933.8226 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1696.2 +,10109,16.08,ADHD-Combined,Female,115,105,122,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6211.1084 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5875.2 +,10109,16.08,ADHD-Combined,Female,115,105,122,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7792.481 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7755.2 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4277.3 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,469.3 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.3 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61534.0 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,967969.2 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,989311.2 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,965151.0 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,395985.78 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,507655.4 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,683912.44 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,21342.0 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,673.1 +,10109,16.08,ADHD-Combined,Female,115,105,122,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,185881.06 +,10109,16.08,ADHD-Combined,Female,115,105,122,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,654181.4 +,10109,16.08,ADHD-Combined,Female,115,105,122,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10109,16.08,ADHD-Combined,Female,115,105,122,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,476850.88 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,834.2 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1493.9 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10110,16.08,Typically Developing Children,Female,99,97,99,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1107197E7 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1142440.0 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1115858.0 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1115915.1 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19773.0 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1187.1 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,475.6 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,541.1 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,604.1 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1215.0 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1162.1 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1436002.4 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,216313.53 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,248225.64 +,10110,16.08,Typically Developing Children,Female,99,97,99,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,633.0773 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,785.5 +,10110,16.08,Typically Developing Children,Female,99,97,99,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1415.1138 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1742.8 +,10110,16.08,Typically Developing Children,Female,99,97,99,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3613.5942 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3468.6 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,48699.6 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13196.0 +,10110,16.08,Typically Developing Children,Female,99,97,99,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3837.0332 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3856.2 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,228.1 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,9666.5 +,10110,16.08,Typically Developing Children,Female,99,97,99,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1863.3219 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2151.7 +,10110,16.08,Typically Developing Children,Female,99,97,99,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5834.6846 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5858.6 +,10110,16.08,Typically Developing Children,Female,99,97,99,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8384.283 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7924.5 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4133.5 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,413.5 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,10.2 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1542950.0 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,191.9 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,216225.3 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,248870.66 +,10110,16.08,Typically Developing Children,Female,99,97,99,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,602.48737 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,767.1 +,10110,16.08,Typically Developing Children,Female,99,97,99,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1183.6948 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1814.9 +,10110,16.08,Typically Developing Children,Female,99,97,99,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3723.984 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3886.8 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,49056.5 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12529.5 +,10110,16.08,Typically Developing Children,Female,99,97,99,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3662.804 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3788.2 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,366.1 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,12519.6 +,10110,16.08,Typically Developing Children,Female,99,97,99,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1629.2429 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2031.1 +,10110,16.08,Typically Developing Children,Female,99,97,99,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5700.355 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5867.1 +,10110,16.08,Typically Developing Children,Female,99,97,99,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7519.787 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8109.7 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4232.1 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,465.8 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,120.3 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62705.0 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,995127.1 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1018399.1 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,992220.0 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,432538.8 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,497096.28 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,658074.3 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,23272.0 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1092.1 +,10110,16.08,Typically Developing Children,Female,99,97,99,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,203775.06 +,10110,16.08,Typically Developing Children,Female,99,97,99,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,655100.6 +,10110,16.08,Typically Developing Children,Female,99,97,99,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10110,16.08,Typically Developing Children,Female,99,97,99,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,506542.9 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,875.0 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1723.3 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10111,7.74,Typically Developing Children,Male,98,88,108,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1112902E7 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1152710.0 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1140455.0 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1140400.1 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18012.2 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,832.3 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,539.0 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,655.6 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,428.6 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,711.7 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,801.2 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1344812.8 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,199282.53 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,276205.47 +,10111,7.74,Typically Developing Children,Male,98,88,108,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,502.7407 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,769.5 +,10111,7.74,Typically Developing Children,Male,98,88,108,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,892.4312 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1356.8 +,10111,7.74,Typically Developing Children,Male,98,88,108,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3575.045 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3569.2 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61626.7 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12300.8 +,10111,7.74,Typically Developing Children,Male,98,88,108,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2980.5342 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3462.4 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,618.4 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4393.4 +,10111,7.74,Typically Developing Children,Male,98,88,108,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1496.2521 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1934.8 +,10111,7.74,Typically Developing Children,Male,98,88,108,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6187.1685 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6243.8 +,10111,7.74,Typically Developing Children,Male,98,88,108,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6622.079 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8226.7 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3759.7 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,306.9 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1570153.0 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,152.9 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,197393.8 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,266745.38 +,10111,7.74,Typically Developing Children,Male,98,88,108,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,388.36053 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,594.6 +,10111,7.74,Typically Developing Children,Male,98,88,108,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,970.90137 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1539.6 +,10111,7.74,Typically Developing Children,Male,98,88,108,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3153.4343 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3662.7 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53729.8 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11714.1 +,10111,7.74,Typically Developing Children,Male,98,88,108,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2899.404 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3828.6 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,440.6 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3376.1 +,10111,7.74,Typically Developing Children,Male,98,88,108,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1794.1725 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1758.8 +,10111,7.74,Typically Developing Children,Male,98,88,108,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5750.9277 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6195.9 +,10111,7.74,Typically Developing Children,Male,98,88,108,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6748.429 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8127.9 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3802.9 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,359.6 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,5.3 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61341.0 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1003574.2 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1012578.2 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1000880.0 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,396676.34 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,542950.8 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,721088.8 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9004.0 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,919.7 +,10111,7.74,Typically Developing Children,Male,98,88,108,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,172881.62 +,10111,7.74,Typically Developing Children,Male,98,88,108,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,679084.3 +,10111,7.74,Typically Developing Children,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10111,7.74,Typically Developing Children,Male,98,88,108,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,458722.94 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1280.5 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2231.9 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10112,14.79,Typically Developing Children,Male,112,106,116,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1103551E7 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1290019.0 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1270033.0 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1270342.1 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22194.3 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,886.9 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,529.4 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,408.0 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,528.9 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,851.1 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1191.7 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1619405.8 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,231703.83 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,296550.16 +,10112,14.79,Typically Developing Children,Male,112,106,116,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,460.18063 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,705.9 +,10112,14.79,Typically Developing Children,Male,112,106,116,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,791.3511 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1611.6 +,10112,14.79,Typically Developing Children,Male,112,106,116,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4170.8857 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4135.8 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62386.2 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13526.3 +,10112,14.79,Typically Developing Children,Male,112,106,116,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4556.5864 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4699.5 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,594.0 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6735.1 +,10112,14.79,Typically Developing Children,Male,112,106,116,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1961.7527 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1969.6 +,10112,14.79,Typically Developing Children,Male,112,106,116,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5431.7275 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5562.3 +,10112,14.79,Typically Developing Children,Male,112,106,116,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8960.223 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8437.3 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4443.4 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,702.8 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1729565.0 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,196.4 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,230732.25 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,295685.9 +,10112,14.79,Typically Developing Children,Male,112,106,116,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,243.39034 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,779.5 +,10112,14.79,Typically Developing Children,Male,112,106,116,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1045.3815 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1926.1 +,10112,14.79,Typically Developing Children,Male,112,106,116,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4440.876 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4399.8 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60521.8 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13665.4 +,10112,14.79,Typically Developing Children,Male,112,106,116,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4818.5967 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,5070.4 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,784.8 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6453.1 +,10112,14.79,Typically Developing Children,Male,112,106,116,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1912.5426 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1826.6 +,10112,14.79,Typically Developing Children,Male,112,106,116,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5439.7075 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5700.5 +,10112,14.79,Typically Developing Children,Male,112,106,116,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9079.923 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8176.0 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4425.4 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,732.7 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,23.0 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65745.0 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1122715.1 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1138199.1 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1119940.0 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,462436.06 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,592236.06 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,782148.06 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15484.0 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,982.3 +,10112,14.79,Typically Developing Children,Male,112,106,116,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,222368.33 +,10112,14.79,Typically Developing Children,Male,112,106,116,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,742401.7 +,10112,14.79,Typically Developing Children,Male,112,106,116,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10112,14.79,Typically Developing Children,Male,112,106,116,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,535345.7 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,812.1 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1936.5 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10113,14.91,Typically Developing Children,Female,113,110,111,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1117226E7 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1065711.0 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1052514.0 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1052673.0 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16018.7 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,826.1 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,562.3 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,539.7 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,544.6 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1137.4 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,903.8 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1355719.1 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,193446.28 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,236309.69 +,10113,14.91,Typically Developing Children,Female,113,110,111,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,489.44067 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,512.9 +,10113,14.91,Typically Developing Children,Female,113,110,111,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,601.1608 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1085.9 +,10113,14.91,Typically Developing Children,Female,113,110,111,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2943.294 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2926.0 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55942.5 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13674.8 +,10113,14.91,Typically Developing Children,Female,113,110,111,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3233.2344 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3420.5 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,285.8 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4548.7 +,10113,14.91,Typically Developing Children,Female,113,110,111,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1469.652 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1666.6 +,10113,14.91,Typically Developing Children,Female,113,110,111,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4968.8867 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4964.8 +,10113,14.91,Typically Developing Children,Female,113,110,111,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6282.9287 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6231.5 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3394.0 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,392.3 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1402020.0 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,123.6 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,193437.83 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,239557.16 +,10113,14.91,Typically Developing Children,Female,113,110,111,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,458.85065 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,475.8 +,10113,14.91,Typically Developing Children,Female,113,110,111,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,903.0712 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1326.2 +,10113,14.91,Typically Developing Children,Female,113,110,111,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3141.4644 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3142.2 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58220.4 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12475.9 +,10113,14.91,Typically Developing Children,Female,113,110,111,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3047.0342 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3499.7 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,356.8 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4149.2 +,10113,14.91,Typically Developing Children,Female,113,110,111,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1512.212 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1538.3 +,10113,14.91,Typically Developing Children,Female,113,110,111,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4748.1064 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4985.1 +,10113,14.91,Typically Developing Children,Female,113,110,111,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,5838.708 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6016.7 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3251.2 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,634.7 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,6.7 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,50134.0 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,915057.94 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,924844.94 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,912633.0 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,386884.1 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,475866.84 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,640423.9 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9787.0 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1175.5 +,10113,14.91,Typically Developing Children,Female,113,110,111,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,176414.11 +,10113,14.91,Typically Developing Children,Female,113,110,111,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,606761.44 +,10113,14.91,Typically Developing Children,Female,113,110,111,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10113,14.91,Typically Developing Children,Female,113,110,111,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,445190.2 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1529.4 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,3419.8 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1102609E7 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1370894.0 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1344675.0 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1344862.9 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,23716.7 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1084.8 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,616.4 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,712.8 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,609.5 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1050.5 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1425.6 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1735571.2 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,269387.97 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,289712.47 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,653.0309 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,811.1 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,714.211 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1659.6 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4161.5757 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3913.3 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60917.0 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16223.2 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3849.0254 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3939.2 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,424.5 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,10151.2 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2061.503 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2163.1 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6004.9585 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6007.6 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8895.053 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7709.1 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4962.9 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,563.7 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.8 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1835024.0 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,149.6 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,272165.5 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,293947.9 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,444.2206 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,609.8 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1365.9119 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1777.7 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4337.1357 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4234.0 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62915.0 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15289.9 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4541.956 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4303.0 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,391.7 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8081.6 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2112.043 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2078.8 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6152.5884 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6132.9 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8961.553 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8000.2 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4805.3 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,727.1 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.5 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64940.0 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1192314.9 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1212359.9 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1189877.0 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,541553.44 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,583660.4 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,773075.4 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,20045.0 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,908.5 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,247067.8 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,694626.7 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10114,16.73,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,602730.25 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,893.3 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2174.3 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1108346E7 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1142341.0 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1125139.0 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1125185.8 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19015.2 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,766.0 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,581.6 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,667.5 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,589.3 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,841.4 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,965.6 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1396488.6 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,197659.72 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,267384.94 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,517.36774 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,676.6 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,948.2859 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1460.7 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3521.8247 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3195.0 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55980.1 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14319.0 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3620.2441 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3768.2 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,448.0 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6034.5 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1820.7621 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1955.0 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5544.7456 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5362.6 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7983.955 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6906.4 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3971.5 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,599.8 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,17.2 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1468113.0 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,142.6 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,197763.9 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,267018.22 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,520.0277 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,647.4 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1260.8345 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1622.5 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3450.005 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3192.0 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54816.2 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13708.6 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3745.2637 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3805.6 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,561.4 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5757.5 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1806.1321 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1742.7 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5672.4253 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5637.9 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8042.475 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7051.6 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3930.5 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,481.1 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,23.6 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56774.0 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,989743.75 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1003083.75 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,986428.0 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,395423.62 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,534403.1 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,702638.1 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13340.0 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,953.1 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,181363.33 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,657744.6 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10115,15.32,ADHD-Inattentive,Male,93,89,98,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,449839.94 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1243.4 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1228.4 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1102741E7 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1342862.0 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1313727.0 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1314494.9 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19132.8 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1193.1 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,535.6 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,578.4 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,577.4 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,984.3 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1241.0 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1710337.0 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,251278.84 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,300491.22 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,642.39087 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,613.6 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,847.2112 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1609.2 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4302.556 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4171.5 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,51281.2 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13402.7 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4201.4756 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3939.7 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,629.9 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,9694.9 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2073.473 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2364.9 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6809.6094 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6845.9 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8492.062 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7586.2 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4152.5 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,694.8 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,14.0 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1744580.0 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,203.9 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,257280.36 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,308799.47 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,551.95074 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,630.6 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1111.8816 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2105.8 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4184.1855 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4223.1 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,52551.4 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13156.3 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3914.1953 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4132.5 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,552.0 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,13516.0 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2166.573 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2263.4 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6896.0596 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6834.9 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7929.4707 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7929.1 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4189.6 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,894.9 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,5.7 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65722.0 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1186919.9 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1212578.9 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1182622.0 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,508559.22 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,609290.7 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,779931.7 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,25659.0 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1109.2 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,215756.89 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,736221.2 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10116,16.77,ADHD-Inattentive,Male,114,109,115,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,566250.94 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,696.5 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,926.4 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10117,9.35,Typically Developing Children,Male,99,103,95,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1107533E7 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1198002.0 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1186421.0 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1185718.8 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20073.2 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1201.7 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,662.5 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,796.7 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,503.3 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,749.1 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,555.8 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1454650.8 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,210442.78 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,281487.47 +,10117,9.35,Typically Developing Children,Male,99,103,95,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,702.24097 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,801.6 +,10117,9.35,Typically Developing Children,Male,99,103,95,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,981.5414 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1459.5 +,10117,9.35,Typically Developing Children,Male,99,103,95,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3731.985 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3812.0 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54952.5 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14452.0 +,10117,9.35,Typically Developing Children,Male,99,103,95,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4125.6655 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4067.7 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,582.4 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4725.4 +,10117,9.35,Typically Developing Children,Male,99,103,95,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1746.2924 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2059.8 +,10117,9.35,Typically Developing Children,Male,99,103,95,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6092.7383 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6273.7 +,10117,9.35,Typically Developing Children,Male,99,103,95,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8182.1714 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7634.2 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3980.7 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,413.9 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,27.0 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1597393.0 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,171.3 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,213156.2 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,280989.28 +,10117,9.35,Typically Developing Children,Male,99,103,95,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,555.9408 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,693.4 +,10117,9.35,Typically Developing Children,Male,99,103,95,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1097.2515 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1554.3 +,10117,9.35,Typically Developing Children,Male,99,103,95,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3868.9753 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4052.4 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,52474.2 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14265.1 +,10117,9.35,Typically Developing Children,Male,99,103,95,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3447.3647 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4288.5 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,515.1 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3484.9 +,10117,9.35,Typically Developing Children,Male,99,103,95,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1778.2124 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1899.3 +,10117,9.35,Typically Developing Children,Male,99,103,95,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5657.8276 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5939.2 +,10117,9.35,Typically Developing Children,Male,99,103,95,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7362.89 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7687.4 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4309.9 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,559.7 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,10.5 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62812.0 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1052833.8 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1062503.8 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1049452.0 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,423598.97 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,562476.75 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,733704.75 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9670.0 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,894.7 +,10117,9.35,Typically Developing Children,Male,99,103,95,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,167203.84 +,10117,9.35,Typically Developing Children,Male,99,103,95,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,714866.7 +,10117,9.35,Typically Developing Children,Male,99,103,95,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10117,9.35,Typically Developing Children,Male,99,103,95,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,496818.2 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,631.1 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1025.0 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10118,13.33,ADHD-Combined,Male,84,83,89,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1111262E7 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1151953.0 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1140376.0 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1140501.4 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19217.3 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,745.0 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,568.5 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,540.1 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,576.3 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,964.2 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,925.5 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1407133.9 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,195661.33 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,272069.2 +,10118,13.33,ADHD-Combined,Male,84,83,89,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,550.6207 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,681.3 +,10118,13.33,ADHD-Combined,Male,84,83,89,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,710.22095 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1468.1 +,10118,13.33,ADHD-Combined,Male,84,83,89,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3668.145 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3268.9 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56890.1 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16947.1 +,10118,13.33,ADHD-Combined,Male,84,83,89,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2601.4836 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3796.4 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,312.1 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3512.3 +,10118,13.33,ADHD-Combined,Male,84,83,89,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1625.2622 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2158.4 +,10118,13.33,ADHD-Combined,Male,84,83,89,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5742.9478 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5266.8 +,10118,13.33,ADHD-Combined,Male,84,83,89,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7134.13 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7541.7 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3947.2 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,357.5 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,9.7 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1544486.0 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,80.2 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,195185.14 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,268826.75 +,10118,13.33,ADHD-Combined,Male,84,83,89,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,462.84064 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,620.3 +,10118,13.33,ADHD-Combined,Male,84,83,89,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,579.8808 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1997.0 +,10118,13.33,ADHD-Combined,Male,84,83,89,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4025.9155 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3923.5 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58723.6 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15810.5 +,10118,13.33,ADHD-Combined,Male,84,83,89,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3866.3154 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3871.9 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,349.2 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4929.7 +,10118,13.33,ADHD-Combined,Male,84,83,89,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1758.2625 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1852.0 +,10118,13.33,ADHD-Combined,Male,84,83,89,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5270.7974 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5262.7 +,10118,13.33,ADHD-Combined,Male,84,83,89,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7604.9507 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7119.6 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4098.1 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,473.3 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,41.1 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58990.0 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,994747.4 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1004007.4 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,990559.0 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,390846.47 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,540895.94 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,717328.94 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9260.0 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,979.6 +,10118,13.33,ADHD-Combined,Male,84,83,89,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,175882.11 +,10118,13.33,ADHD-Combined,Male,84,83,89,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,677537.5 +,10118,13.33,ADHD-Combined,Male,84,83,89,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10118,13.33,ADHD-Combined,Male,84,83,89,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,442354.62 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1359.9 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,3619.6 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1110166E7 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1161301.0 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1136879.0 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1137038.8 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18924.2 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,780.7 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,471.5 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,627.7 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,546.2 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,851.8 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,984.7 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1479868.6 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,202035.31 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,275583.22 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,512.05 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,687.0 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,917.7 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1577.7 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3653.51 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3801.8 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54502.1 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11665.5 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3287.76 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3601.6 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,848.9 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,9450.1 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1770.2301 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1849.0 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5304.04 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5504.8 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7555.7305 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7050.7 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3846.7 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,483.8 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1564946.0 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,195.8 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,200669.97 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,269960.28 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,357.77002 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,694.1 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1079.9601 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1733.9 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3959.4102 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3813.2 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54334.8 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10631.5 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3673.4602 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3979.6 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,548.1 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7822.0 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1826.0901 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1627.3 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5269.46 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5470.2 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7515.83 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6983.1 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3848.2 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,424.9 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,5.3 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58049.0 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1008719.8 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1027334.8 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1005960.0 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,402705.28 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,545543.5 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,713027.5 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,18615.0 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1303.6 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,185222.45 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,725746.44 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10119,7.77,ADHD-Inattentive,Male,94,88,101,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,484472.47 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,745.1 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1396.1 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1116187E7 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1050297.0 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1033820.0 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1033672.3 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16012.7 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1048.9 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,700.6 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,688.4 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,598.2 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1074.9 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,778.4 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1308214.5 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,198997.58 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,231028.31 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,516.0407 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,465.9 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,626.43085 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1182.0 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3315.6946 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3180.6 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52009.5 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12350.9 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3359.5847 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3258.9 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,265.0 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6378.3 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1457.682 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1544.3 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4408.956 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4217.8 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6707.199 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,5998.0 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3484.0 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,478.0 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.6 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1386927.0 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,102.8 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,197727.9 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,232847.48 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,392.35052 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,403.7 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,606.48083 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1193.1 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3503.2249 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3166.5 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,49588.1 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12070.8 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3057.6743 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3142.3 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,154.6 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6559.1 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1665.1624 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1556.3 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4295.906 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4155.1 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6764.389 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,5926.8 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3397.6 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,469.7 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,4.3 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,47628.0 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,910667.3 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,924451.3 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,908286.0 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,396725.5 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,463875.8 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,613388.8 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13784.0 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,648.6 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,178708.36 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,575671.3 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10120,17.09,Typically Developing Children,Female,-999,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,427787.1 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,799.3 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1582.9 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10121,14.18,Typically Developing Children,Female,117,124,108,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1108666E7 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1082118.0 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1071112.0 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1071277.1 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18414.7 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,935.7 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,628.9 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,681.9 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,511.6 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,753.5 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,786.4 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1395898.5 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,203247.39 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,243838.48 +,10121,14.18,Typically Developing Children,Female,117,124,108,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,494.75784 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,677.7 +,10121,14.18,Typically Developing Children,Female,117,124,108,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1025.4255 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1491.1 +,10121,14.18,Typically Developing Children,Female,117,124,108,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3932.793 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3688.6 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,47509.4 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12523.3 +,10121,14.18,Typically Developing Children,Female,117,124,108,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4096.3823 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4002.7 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,225.5 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3841.1 +,10121,14.18,Typically Developing Children,Female,117,124,108,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1774.2123 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1919.9 +,10121,14.18,Typically Developing Children,Female,117,124,108,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5225.5474 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4886.5 +,10121,14.18,Typically Developing Children,Female,117,124,108,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7864.256 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7283.1 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3793.0 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,396.9 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,39.2 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1471410.0 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,134.6 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,202999.45 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,244806.83 +,10121,14.18,Typically Developing Children,Female,117,124,108,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,500.07782 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,677.1 +,10121,14.18,Typically Developing Children,Female,117,124,108,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,863.16626 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1490.5 +,10121,14.18,Typically Developing Children,Female,117,124,108,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3786.4934 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3467.2 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,48308.1 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11813.8 +,10121,14.18,Typically Developing Children,Female,117,124,108,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4220.072 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3980.9 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,130.8 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3199.0 +,10121,14.18,Typically Developing Children,Female,117,124,108,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1747.6124 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1755.7 +,10121,14.18,Typically Developing Children,Female,117,124,108,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4998.118 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4984.5 +,10121,14.18,Typically Developing Children,Female,117,124,108,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7604.9067 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6465.8 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3877.2 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,318.5 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,27.5 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56150.0 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,953561.2 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,961363.2 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,950789.0 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,406246.84 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,488645.3 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,641389.3 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7802.0 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,801.5 +,10121,14.18,Typically Developing Children,Female,117,124,108,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,192301.2 +,10121,14.18,Typically Developing Children,Female,117,124,108,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,629183.0 +,10121,14.18,Typically Developing Children,Female,117,124,108,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10121,14.18,Typically Developing Children,Female,117,124,108,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,466276.03 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1090.3 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2135.2 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10122,16.28,Typically Developing Children,Male,125,120,122,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1099476E7 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1486613.0 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1452608.0 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1452767.8 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21305.1 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1120.2 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,618.0 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,662.1 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,390.9 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1117.2 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,2528.3 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1820764.4 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,283551.56 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,319635.2 +,10122,16.28,Typically Developing Children,Male,125,120,122,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,526.6807 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,689.3 +,10122,16.28,Typically Developing Children,Male,125,120,122,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1444.382 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1944.3 +,10122,16.28,Typically Developing Children,Male,125,120,122,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4483.436 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4399.8 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63124.4 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,19526.9 +,10122,16.28,Typically Developing Children,Male,125,120,122,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4831.8965 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4614.2 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,360.2 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,12967.1 +,10122,16.28,Typically Developing Children,Male,125,120,122,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2112.043 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2447.7 +,10122,16.28,Typically Developing Children,Male,125,120,122,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6245.6885 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6326.7 +,10122,16.28,Typically Developing Children,Male,125,120,122,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9407.103 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9337.7 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4937.5 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,512.3 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,12.3 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1918561.0 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,189.9 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,287143.97 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,327324.06 +,10122,16.28,Typically Developing Children,Male,125,120,122,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,267.33038 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,663.2 +,10122,16.28,Typically Developing Children,Male,125,120,122,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1699.7423 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2115.2 +,10122,16.28,Typically Developing Children,Male,125,120,122,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4503.386 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4444.4 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60301.8 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,17991.9 +,10122,16.28,Typically Developing Children,Male,125,120,122,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4725.4966 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4745.4 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,325.8 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,14294.1 +,10122,16.28,Typically Developing Children,Male,125,120,122,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1971.0627 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2207.5 +,10122,16.28,Typically Developing Children,Male,125,120,122,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6531.639 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6601.2 +,10122,16.28,Typically Developing Children,Male,125,120,122,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8638.362 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9550.0 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4711.4 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,441.3 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,17.6 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,71897.0 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1294875.8 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1323193.8 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1289252.0 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,570695.56 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,646959.25 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,845249.25 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,28318.0 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1580.1 +,10122,16.28,Typically Developing Children,Male,125,120,122,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,231933.7 +,10122,16.28,Typically Developing Children,Male,125,120,122,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,794387.5 +,10122,16.28,Typically Developing Children,Male,125,120,122,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10122,16.28,Typically Developing Children,Male,125,120,122,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,622926.3 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1006.5 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2328.7 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10123,16.13,Typically Developing Children,Male,109,106,109,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1103869E7 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1209677.0 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1196502.0 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1196037.1 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22205.2 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,865.5 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,872.8 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,992.2 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,653.6 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,996.6 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,947.9 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1547018.1 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,231101.64 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,261254.45 +,10123,16.13,Typically Developing Children,Male,109,106,109,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,526.6807 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,852.0 +,10123,16.13,Typically Developing Children,Male,109,106,109,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1127.8416 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1644.0 +,10123,16.13,Typically Developing Children,Male,109,106,109,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4644.366 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4445.3 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58556.9 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15691.9 +,10123,16.13,Typically Developing Children,Male,109,106,109,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3862.3252 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4023.2 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,406.4 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3964.5 +,10123,16.13,Typically Developing Children,Male,109,106,109,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1643.8823 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2399.3 +,10123,16.13,Typically Developing Children,Male,109,106,109,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6446.519 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6145.4 +,10123,16.13,Typically Developing Children,Male,109,106,109,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8445.512 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8519.2 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4652.5 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,562.9 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,29.1 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1653038.0 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,79.6 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,228968.8 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,258955.25 +,10123,16.13,Typically Developing Children,Male,109,106,109,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,401.66055 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,706.7 +,10123,16.13,Typically Developing Children,Male,109,106,109,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1314.0417 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1801.1 +,10123,16.13,Typically Developing Children,Male,109,106,109,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4287.926 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4712.9 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58849.6 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14982.9 +,10123,16.13,Typically Developing Children,Male,109,106,109,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3761.245 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4076.2 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,480.5 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4034.6 +,10123,16.13,Typically Developing Children,Male,109,106,109,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1952.4426 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2046.3 +,10123,16.13,Typically Developing Children,Male,109,106,109,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6213.7686 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6235.9 +,10123,16.13,Typically Developing Children,Male,109,106,109,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8367.042 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8327.4 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4642.4 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,507.2 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,38.4 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67054.0 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1050554.1 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1059748.1 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1047776.0 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,460070.44 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,520209.72 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,705807.7 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9194.0 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1999.5 +,10123,16.13,Typically Developing Children,Male,109,106,109,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,228761.64 +,10123,16.13,Typically Developing Children,Male,109,106,109,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,627635.9 +,10123,16.13,Typically Developing Children,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10123,16.13,Typically Developing Children,Male,109,106,109,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,533923.94 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,662.8 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1977.4 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10124,14.06,Typically Developing Children,Female,115,119,109,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1114269E7 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1035067.0 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1024848.0 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1024889.5 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16069.2 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1000.6 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,769.2 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,704.1 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,573.7 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,966.3 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,710.8 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1271267.2 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,180935.75 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,240733.98 +,10124,14.06,Typically Developing Children,Female,115,119,109,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,355.11047 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,619.3 +,10124,14.06,Typically Developing Children,Female,115,119,109,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1170.4016 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1289.7 +,10124,14.06,Typically Developing Children,Female,115,119,109,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3709.375 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3643.2 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,50475.1 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11907.2 +,10124,14.06,Typically Developing Children,Female,115,119,109,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3477.9548 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3556.0 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,284.0 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3413.0 +,10124,14.06,Typically Developing Children,Female,115,119,109,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1611.9622 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1748.2 +,10124,14.06,Typically Developing Children,Female,115,119,109,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4577.866 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4660.1 +,10124,14.06,Typically Developing Children,Female,115,119,109,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6434.549 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,5612.9 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3773.8 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,420.5 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,32.4 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1400398.0 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,72.9 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,182423.17 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,244544.58 +,10124,14.06,Typically Developing Children,Female,115,119,109,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,385.70053 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,595.4 +,10124,14.06,Typically Developing Children,Female,115,119,109,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,927.0113 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1505.1 +,10124,14.06,Typically Developing Children,Female,115,119,109,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3487.265 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3684.8 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,50821.7 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11459.7 +,10124,14.06,Typically Developing Children,Female,115,119,109,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3467.3147 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3827.0 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,260.8 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2922.2 +,10124,14.06,Typically Developing Children,Female,115,119,109,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1658.5123 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1517.9 +,10124,14.06,Typically Developing Children,Female,115,119,109,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4726.8267 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4657.5 +,10124,14.06,Typically Developing Children,Female,115,119,109,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6604.789 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,5748.8 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3749.6 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,467.3 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.4 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,51886.0 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,903408.5 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,910572.5 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,900424.0 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,363358.9 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,485278.56 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,639071.56 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7164.0 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,573.4 +,10124,14.06,Typically Developing Children,Female,115,119,109,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,156618.36 +,10124,14.06,Typically Developing Children,Female,115,119,109,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,615672.5 +,10124,14.06,Typically Developing Children,Female,115,119,109,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10124,14.06,Typically Developing Children,Female,115,119,109,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,411156.78 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1497.1 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1721.0 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10125,7.19,Typically Developing Children,Male,129,131,120,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1113571E7 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1236197.0 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1202189.0 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1202437.2 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15002.4 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,978.1 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,439.9 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,447.2 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,404.0 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,654.0 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1084.9 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1481786.4 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,202102.34 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,316219.8 +,10125,7.19,Typically Developing Children,Male,129,131,120,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,356.4405 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,689.4 +,10125,7.19,Typically Developing Children,Male,129,131,120,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,716.871 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1341.8 +,10125,7.19,Typically Developing Children,Male,129,131,120,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3668.145 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3921.1 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,48197.6 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10283.7 +,10125,7.19,Typically Developing Children,Male,129,131,120,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2888.764 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3742.5 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,520.6 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,16028.1 +,10125,7.19,Typically Developing Children,Male,129,131,120,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1568.0721 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1563.1 +,10125,7.19,Typically Developing Children,Male,129,131,120,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5244.1973 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5467.4 +,10125,7.19,Typically Developing Children,Male,129,131,120,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6906.6997 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6273.3 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3492.3 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,655.9 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,8.6 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1633060.0 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,146.7 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,202704.94 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,308629.1 +,10125,7.19,Typically Developing Children,Male,129,131,120,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,259.35034 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,583.6 +,10125,7.19,Typically Developing Children,Male,129,131,120,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,589.1908 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1643.1 +,10125,7.19,Typically Developing Children,Male,129,131,120,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3986.0154 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3985.3 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,46538.4 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12076.4 +,10125,7.19,Typically Developing Children,Male,129,131,120,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3454.0146 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3740.9 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,584.4 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,11674.7 +,10125,7.19,Typically Developing Children,Male,129,131,120,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1639.8922 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1631.2 +,10125,7.19,Typically Developing Children,Male,129,131,120,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5507.5376 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5345.9 +,10125,7.19,Typically Developing Children,Male,129,131,120,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6507.6987 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6394.0 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3573.1 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,805.0 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,5.0 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55189.0 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1087384.2 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1117290.2 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1084450.0 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,404807.28 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,624848.94 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,775779.94 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,29906.0 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1211.3 +,10125,7.19,Typically Developing Children,Male,129,131,120,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,182562.7 +,10125,7.19,Typically Developing Children,Male,129,131,120,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,732098.2 +,10125,7.19,Typically Developing Children,Male,129,131,120,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10125,7.19,Typically Developing Children,Male,129,131,120,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,439463.2 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,830.4 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1247.0 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10126,9.7,ADHD-Combined,Male,88,96,83,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1104685E7 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1366755.0 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1349707.0 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1349678.9 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19534.1 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1031.1 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,656.7 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,794.4 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,478.5 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,950.3 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,993.6 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1613754.1 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,238955.08 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,331479.28 +,10126,9.7,ADHD-Combined,Male,88,96,83,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,513.38074 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,734.1 +,10126,9.7,ADHD-Combined,Male,88,96,83,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1210.3016 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,2065.6 +,10126,9.7,ADHD-Combined,Male,88,96,83,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4886.427 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4913.2 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55399.4 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12957.9 +,10126,9.7,ADHD-Combined,Male,88,96,83,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3458.005 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4101.7 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,397.1 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6316.4 +,10126,9.7,ADHD-Combined,Male,88,96,83,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2146.623 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2235.1 +,10126,9.7,ADHD-Combined,Male,88,96,83,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5772.208 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6079.2 +,10126,9.7,ADHD-Combined,Male,88,96,83,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8130.3013 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8810.3 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4200.3 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,461.8 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,11.8 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1744617.0 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,155.9 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,238707.28 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,335372.22 +,10126,9.7,ADHD-Combined,Male,88,96,83,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,547.96075 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,850.3 +,10126,9.7,ADHD-Combined,Male,88,96,83,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,675.6409 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1913.8 +,10126,9.7,ADHD-Combined,Male,88,96,83,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4891.7466 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4979.3 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54671.5 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12154.2 +,10126,9.7,ADHD-Combined,Male,88,96,83,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4178.8657 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4181.1 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,555.7 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6340.7 +,10126,9.7,ADHD-Combined,Male,88,96,83,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1927.1726 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2110.7 +,10126,9.7,ADHD-Combined,Male,88,96,83,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5623.2476 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6207.9 +,10126,9.7,ADHD-Combined,Male,88,96,83,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8216.751 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8758.0 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4298.7 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,441.4 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,20.1 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68731.0 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1217027.9 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1231191.9 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1213136.0 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,477662.38 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,666851.5 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,847546.5 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14164.0 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1194.5 +,10126,9.7,ADHD-Combined,Male,88,96,83,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,179566.2 +,10126,9.7,ADHD-Combined,Male,88,96,83,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,806728.56 +,10126,9.7,ADHD-Combined,Male,88,96,83,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10126,9.7,ADHD-Combined,Male,88,96,83,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,550378.7 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,753.8 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1697.9 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10127,8.14,ADHD-Combined,Male,130,121,132,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1115159E7 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1040007.0 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1028679.0 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1028708.06 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16031.0 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,828.9 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,359.6 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,565.5 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,472.2 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,744.6 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,623.9 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1311798.2 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,172854.2 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,251880.52 +,10127,8.14,ADHD-Combined,Male,130,121,132,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,482.79065 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,548.2 +,10127,8.14,ADHD-Combined,Male,130,121,132,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,522.69073 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1468.5 +,10127,8.14,ADHD-Combined,Male,130,121,132,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3524.505 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3357.2 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53775.2 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11913.5 +,10127,8.14,ADHD-Combined,Male,130,121,132,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2574.8835 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3365.1 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,213.0 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4640.2 +,10127,8.14,ADHD-Combined,Male,130,121,132,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1619.9423 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1750.5 +,10127,8.14,ADHD-Combined,Male,130,121,132,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4966.227 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5059.4 +,10127,8.14,ADHD-Combined,Male,130,121,132,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7236.54 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6938.5 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3523.4 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,294.5 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,3.3 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1409970.0 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,108.8 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,170127.83 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,248373.52 +,10127,8.14,ADHD-Combined,Male,130,121,132,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,409.64056 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,492.1 +,10127,8.14,ADHD-Combined,Male,130,121,132,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,606.48083 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1401.6 +,10127,8.14,ADHD-Combined,Male,130,121,132,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3446.0347 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3330.3 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54154.8 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11599.9 +,10127,8.14,ADHD-Combined,Male,130,121,132,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3121.5144 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3504.5 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,329.1 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2880.9 +,10127,8.14,ADHD-Combined,Male,130,121,132,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1518.862 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1586.1 +,10127,8.14,ADHD-Combined,Male,130,121,132,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4798.6465 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4976.9 +,10127,8.14,ADHD-Combined,Male,130,121,132,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6876.1094 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7009.5 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3387.2 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,395.5 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,1.0 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,53875.0 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,899403.06 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,907834.06 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,896972.0 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,342982.03 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,500254.03 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,662926.06 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8431.0 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,700.6 +,10127,8.14,ADHD-Combined,Male,130,121,132,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,156148.86 +,10127,8.14,ADHD-Combined,Male,130,121,132,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,660476.25 +,10127,8.14,ADHD-Combined,Male,130,121,132,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10127,8.14,ADHD-Combined,Male,130,121,132,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,412129.0 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1164.7 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1618.0 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10128,9.53,Typically Developing Children,Male,127,136,112,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1114461E7 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1186413.0 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1175677.0 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1175575.6 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18181.6 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,637.6 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,509.6 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,414.4 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,453.3 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,525.7 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,643.7 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1425659.8 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,190599.03 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,300620.7 +,10128,9.53,Typically Developing Children,Male,127,136,112,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,367.0805 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,611.4 +,10128,9.53,Typically Developing Children,Male,127,136,112,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,917.7013 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1090.8 +,10128,9.53,Typically Developing Children,Male,127,136,112,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3481.9448 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3244.9 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59105.8 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12382.7 +,10128,9.53,Typically Developing Children,Male,127,136,112,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2677.2937 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3641.7 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,316.5 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3093.9 +,10128,9.53,Typically Developing Children,Male,127,136,112,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1558.7622 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1750.6 +,10128,9.53,Typically Developing Children,Male,127,136,112,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5177.6973 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5558.2 +,10128,9.53,Typically Developing Children,Male,127,136,112,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6802.9595 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7025.0 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3409.5 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,533.5 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1543132.0 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,145.5 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,192280.2 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,298321.66 +,10128,9.53,Typically Developing Children,Male,127,136,112,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,252.70035 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,577.8 +,10128,9.53,Typically Developing Children,Male,127,136,112,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,417.62057 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1564.5 +,10128,9.53,Typically Developing Children,Male,127,136,112,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3513.8647 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3429.2 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55441.3 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11560.2 +,10128,9.53,Typically Developing Children,Male,127,136,112,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3149.4443 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3960.6 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,400.1 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3096.6 +,10128,9.53,Typically Developing Children,Male,127,136,112,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1585.3622 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1626.9 +,10128,9.53,Typically Developing Children,Male,127,136,112,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5234.887 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5503.2 +,10128,9.53,Typically Developing Children,Male,127,136,112,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7265.8 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7014.4 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3379.0 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,537.4 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55374.0 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1040049.56 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1047465.56 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1037139.0 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,382879.25 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,598942.3 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,769797.3 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7416.0 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1157.5 +,10128,9.53,Typically Developing Children,Male,127,136,112,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,163429.3 +,10128,9.53,Typically Developing Children,Male,127,136,112,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,748374.75 +,10128,9.53,Typically Developing Children,Male,127,136,112,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10128,9.53,Typically Developing Children,Male,127,136,112,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,459183.12 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,842.1 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2323.8 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1107541E7 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1213675.0 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1201131.0 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1201243.5 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15463.7 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,943.2 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,656.1 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,575.2 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,546.2 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,832.2 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,880.6 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1438105.2 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,212941.03 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,290104.44 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,528.01074 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,755.0 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,714.211 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1542.5 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4013.9456 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4027.7 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59150.2 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13205.8 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3392.8347 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3648.9 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,381.9 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3728.5 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1771.5625 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2008.5 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5879.938 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5576.4 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8615.752 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7606.9 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3783.9 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,376.1 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.1 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1566370.0 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,150.7 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,212318.19 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,287064.84 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,473.48065 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,657.9 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,950.9513 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1750.0 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4266.646 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4295.5 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54372.1 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12146.1 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3092.2542 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3567.2 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,450.3 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3890.4 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1873.9725 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1695.3 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5586.008 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5633.3 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8163.5513 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7612.6 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3944.5 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,497.5 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.0 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60115.0 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1065572.5 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1074385.5 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1062299.0 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,425259.22 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,577169.3 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,751391.3 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8813.0 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,823.6 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,153204.23 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,716775.25 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,10129,8.39,ADHD-Inattentive,Female,-999,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,470419.0 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,667.5 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1677.9 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1018959,12.36,Typically Developing Children,Female,110,100,121,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3052843E7 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1258733.0 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1247393.0 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1248241.2 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21643.4 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1064.4 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,437.8 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,514.2 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,593.9 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,914.6 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,658.8 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1471109.0 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,208934.95 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,302317.38 +,1018959,12.36,Typically Developing Children,Female,110,100,121,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,635.99805 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,646.5 +,1018959,12.36,Typically Developing Children,Female,110,100,121,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1261.9961 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1799.3 +,1018959,12.36,Typically Developing Children,Female,110,100,121,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4219.987 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4456.1 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63606.2 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14861.4 +,1018959,12.36,Typically Developing Children,Female,110,100,121,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3957.9878 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4152.8 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,392.7 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3909.9 +,1018959,12.36,Typically Developing Children,Female,110,100,121,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2001.9938 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2154.5 +,1018959,12.36,Typically Developing Children,Female,110,100,121,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5615.9824 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5760.2 +,1018959,12.36,Typically Developing Children,Female,110,100,121,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9173.972 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8064.7 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4295.4 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,445.6 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,33.7 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1610078.0 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,116.0 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,209579.92 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,307163.97 +,1018959,12.36,Typically Developing Children,Female,110,100,121,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,612.9981 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,775.0 +,1018959,12.36,Typically Developing Children,Female,110,100,121,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1324.9958 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1840.6 +,1018959,12.36,Typically Developing Children,Female,110,100,121,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4837.985 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4697.4 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63620.7 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13609.6 +,1018959,12.36,Typically Developing Children,Female,110,100,121,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4108.9873 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4303.4 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,168.5 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3739.6 +,1018959,12.36,Typically Developing Children,Female,110,100,121,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1975.9939 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1798.1 +,1018959,12.36,Typically Developing Children,Female,110,100,121,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5482.983 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5523.8 +,1018959,12.36,Typically Developing Children,Female,110,100,121,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9104.972 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8066.2 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4551.8 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,456.9 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,29.1 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64754.0 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1094365.2 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1102950.2 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1091816.0 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,418514.88 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,609481.3 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,802268.3 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8585.0 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,615.6 +,1018959,12.36,Typically Developing Children,Female,110,100,121,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,171393.47 +,1018959,12.36,Typically Developing Children,Female,110,100,121,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,766475.7 +,1018959,12.36,Typically Developing Children,Female,110,100,121,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1018959,12.36,Typically Developing Children,Female,110,100,121,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,529068.4 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1456.4 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2069.8 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3057184E7 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1368150.0 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1350669.0 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1351292.0 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21253.9 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,700.1 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,545.0 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,437.2 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,499.6 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,853.5 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,837.2 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1746967.0 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,243884.2 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,314468.03 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,493.9976 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,636.2 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,677.9967 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1881.8 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3883.981 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3779.7 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,68218.3 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14376.4 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4160.9795 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4430.7 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,442.1 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6713.2 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1868.9908 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1960.1 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5368.9736 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5565.5 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9247.955 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8640.9 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4442.4 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,470.8 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,42.0 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1795358.0 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,239.2 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,245114.94 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,319232.84 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,238.99883 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,571.6 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,544.9973 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1920.2 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3005.9854 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4053.2 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,66614.6 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14007.0 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4205.9795 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4470.2 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,317.8 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5280.2 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1796.9912 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1860.7 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5542.973 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5723.8 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8912.956 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8414.6 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4826.5 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,396.4 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,42.7 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65403.0 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1189991.0 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1203207.0 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1187341.0 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,488999.16 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,633700.9 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,834607.9 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13216.0 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1625.6 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,247971.8 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,619469.0 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1019436,12.98,ADHD-Inattentive,Male,103,115,99,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,545961.3 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,912.7 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1367.7 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1111657E7 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1215374.0 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1202348.0 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1202384.2 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18907.7 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,791.7 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,419.0 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,400.5 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,509.4 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,820.0 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,750.5 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1450556.0 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,192605.92 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,300032.4 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,341.8105 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,598.8 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,477.47064 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1552.0 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3737.3052 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4097.3 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,65653.0 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13651.6 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3113.5342 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3943.7 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,451.5 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4616.1 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1619.9423 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1940.3 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5185.6772 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5667.9 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7803.1206 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7403.0 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3810.1 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,382.9 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,14.9 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1574079.0 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,178.5 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,192856.64 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,300135.28 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,266.00037 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,582.5 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,428.2606 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1843.9 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4097.736 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4258.2 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64611.7 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12425.3 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3275.7944 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3937.0 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,442.5 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4397.0 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1889.9326 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1770.8 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5627.238 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5695.6 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7342.94 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7326.8 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3829.8 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,351.7 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,17.5 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60476.0 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1049309.2 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1059449.2 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1045941.0 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,385462.56 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,600167.7 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,791333.7 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10140.0 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1031.5 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,149517.47 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,772099.3 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1023964,8.29,ADHD-Inattentive,Male,123,125,115,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,463541.56 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,744.9 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1614.5 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1043241,9.12,Typically Developing Children,Male,122,108,124,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3054454E7 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1260160.0 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1243395.0 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1244396.5 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,23240.9 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,990.6 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,470.5 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,572.1 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,543.1 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,922.0 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,776.5 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1533731.0 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,213908.38 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,308830.66 +,1043241,9.12,Typically Developing Children,Male,122,108,124,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,686.9999 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,816.1 +,1043241,9.12,Typically Developing Children,Male,122,108,124,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1318.9998 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1772.2 +,1043241,9.12,Typically Developing Children,Male,122,108,124,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4379.999 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4184.0 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56422.9 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13664.3 +,1043241,9.12,Typically Developing Children,Male,122,108,124,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4415.999 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4237.4 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,504.3 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5205.6 +,1043241,9.12,Typically Developing Children,Male,122,108,124,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1877.9996 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1925.8 +,1043241,9.12,Typically Developing Children,Male,122,108,124,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5404.999 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5623.7 +,1043241,9.12,Typically Developing Children,Male,122,108,124,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9121.998 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8192.9 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4476.5 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,330.3 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,32.3 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1601106.0 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,222.0 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,213777.16 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,305158.34 +,1043241,9.12,Typically Developing Children,Male,122,108,124,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,444.9999 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,779.2 +,1043241,9.12,Typically Developing Children,Male,122,108,124,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,845.9999 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1825.1 +,1043241,9.12,Typically Developing Children,Male,122,108,124,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4610.999 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4398.2 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55326.5 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13291.7 +,1043241,9.12,Typically Developing Children,Male,122,108,124,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4316.999 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4475.7 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,488.2 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7138.9 +,1043241,9.12,Typically Developing Children,Male,122,108,124,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1895.9996 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1596.6 +,1043241,9.12,Typically Developing Children,Male,122,108,124,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5129.999 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5508.1 +,1043241,9.12,Typically Developing Children,Male,122,108,124,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8291.998 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7928.9 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4427.7 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,495.8 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,39.6 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64359.0 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1107423.5 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1121177.5 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1104883.0 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,427685.53 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,613989.0 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,790625.0 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13754.0 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,558.4 +,1043241,9.12,Typically Developing Children,Male,122,108,124,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,175872.97 +,1043241,9.12,Typically Developing Children,Male,122,108,124,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,659975.94 +,1043241,9.12,Typically Developing Children,Male,122,108,124,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1043241,9.12,Typically Developing Children,Male,122,108,124,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,489795.9 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1078.2 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2648.7 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1050345,12.67,Typically Developing Children,Male,128,127,124,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1486632E7 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1328821.0 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1314045.0 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1314169.0 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21240.5 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,882.2 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,362.1 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,425.5 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,304.0 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,821.0 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1248.3 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1688769.1 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,229289.81 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,311525.7 +,1050345,12.67,Typically Developing Children,Male,128,127,124,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,428.0 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,445.0 +,1050345,12.67,Typically Developing Children,Male,128,127,124,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1745.0 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1726.6 +,1050345,12.67,Typically Developing Children,Male,128,127,124,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3801.5 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4058.2 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,73144.3 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14585.6 +,1050345,12.67,Typically Developing Children,Male,128,127,124,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3721.0 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4265.0 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,261.4 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4544.0 +,1050345,12.67,Typically Developing Children,Male,128,127,124,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1710.5 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2206.1 +,1050345,12.67,Typically Developing Children,Male,128,127,124,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5164.75 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5332.4 +,1050345,12.67,Typically Developing Children,Male,128,127,124,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7847.25 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9038.8 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4473.9 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,262.9 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,18.1 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1851759.0 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,250.1 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,223516.92 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,306026.6 +,1050345,12.67,Typically Developing Children,Male,128,127,124,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,325.75 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,629.8 +,1050345,12.67,Typically Developing Children,Male,128,127,124,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1254.75 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1933.1 +,1050345,12.67,Typically Developing Children,Male,128,127,124,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3469.0 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3831.3 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,72459.0 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,18864.1 +,1050345,12.67,Typically Developing Children,Male,128,127,124,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4118.25 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4469.3 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,188.3 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4929.5 +,1050345,12.67,Typically Developing Children,Male,128,127,124,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1669.25 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2366.6 +,1050345,12.67,Typically Developing Children,Male,128,127,124,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5090.75 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5068.2 +,1050345,12.67,Typically Developing Children,Male,128,127,124,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7358.25 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8833.3 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4250.6 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,242.9 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.6 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64399.0 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1137592.0 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1147474.0 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1134504.0 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,452806.75 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,617552.3 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,828612.3 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9882.0 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,839.2 +,1050345,12.67,Typically Developing Children,Male,128,127,124,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,268199.0 +,1050345,12.67,Typically Developing Children,Male,128,127,124,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,747778.0 +,1050345,12.67,Typically Developing Children,Male,128,127,124,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1050345,12.67,Typically Developing Children,Male,128,127,124,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,598503.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,642.1 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1368.5 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,http://purl.org/nidash/fsl#,Background (mm^3),,,9321899.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1206171.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1194493.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1195340.5 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19852.4 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,816.7 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,772.3 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,602.8 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,521.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1016.8 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,840.1 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1602213.1 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,219506.94 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,280702.47 +,1050975,13.58,Typically Developing Children,Male,133,135,125,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,596.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,618.7 +,1050975,13.58,Typically Developing Children,Male,133,135,125,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1541.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1709.8 +,1050975,13.58,Typically Developing Children,Male,133,135,125,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4079.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4077.4 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54001.7 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13355.4 +,1050975,13.58,Typically Developing Children,Male,133,135,125,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3343.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4108.1 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,461.4 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4258.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1738.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2425.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5289.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5104.7 +,1050975,13.58,Typically Developing Children,Male,133,135,125,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8291.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8332.4 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4264.1 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,449.4 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,17.3 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1610707.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,150.7 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,217881.42 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,278661.66 +,1050975,13.58,Typically Developing Children,Male,133,135,125,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,374.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,601.5 +,1050975,13.58,Typically Developing Children,Male,133,135,125,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1235.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1858.6 +,1050975,13.58,Typically Developing Children,Male,133,135,125,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4048.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3881.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54697.7 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13611.6 +,1050975,13.58,Typically Developing Children,Male,133,135,125,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3899.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4616.3 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,526.9 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3269.8 +,1050975,13.58,Typically Developing Children,Male,133,135,125,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1657.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2177.2 +,1050975,13.58,Typically Developing Children,Male,133,135,125,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5463.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5841.4 +,1050975,13.58,Typically Developing Children,Male,133,135,125,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8196.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7604.6 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4117.3 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,550.6 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,36.8 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62573.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1061778.5 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1070779.5 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1058398.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,437388.34 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,559364.1 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,731667.1 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9001.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1089.7 +,1050975,13.58,Typically Developing Children,Male,133,135,125,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,205653.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,662306.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1050975,13.58,Typically Developing Children,Male,133,135,125,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,539021.0 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,820.6 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2568.0 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1057962,8.78,ADHD-Combined,Male,129,121,131,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1135108E7 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1279525.0 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1266295.0 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1266321.9 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20192.0 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,789.9 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,515.9 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,983.1 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,654.9 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,572.6 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,892.6 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1526059.2 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,228430.03 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,301915.06 +,1057962,8.78,ADHD-Combined,Male,129,121,131,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,187.53026 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,991.3 +,1057962,8.78,ADHD-Combined,Male,129,121,131,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,528.01074 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1735.9 +,1057962,8.78,ADHD-Combined,Male,129,121,131,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,1952.4426 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4889.2 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,48939.7 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12154.9 +,1057962,8.78,ADHD-Combined,Male,129,121,131,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,779.3811 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3904.1 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,344.4 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3850.0 +,1057962,8.78,ADHD-Combined,Male,129,121,131,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1028.0914 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2332.1 +,1057962,8.78,ADHD-Combined,Male,129,121,131,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,2138.643 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5583.2 +,1057962,8.78,ADHD-Combined,Male,129,121,131,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,4729.4863 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8867.2 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4158.7 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,442.8 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,13.5 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1710846.0 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,186.6 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,231062.84 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,307327.9 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,739.8 +,1057962,8.78,ADHD-Combined,Male,129,121,131,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,780.71106 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1717.9 +,1057962,8.78,ADHD-Combined,Male,129,121,131,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,1106.5615 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5453.3 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56481.7 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12705.5 +,1057962,8.78,ADHD-Combined,Male,129,121,131,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,933.66125 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4136.7 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,473.1 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4131.1 +,1057962,8.78,ADHD-Combined,Male,129,121,131,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,992.1814 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2014.3 +,1057962,8.78,ADHD-Combined,Male,129,121,131,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,1901.9026 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5628.7 +,1057962,8.78,ADHD-Combined,Male,129,121,131,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,4697.5664 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8384.5 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4329.3 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,436.9 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66626.0 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1137782.9 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1146932.9 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1135177.0 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,459492.88 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,609242.94 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,783023.94 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9150.0 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1536.4 +,1057962,8.78,ADHD-Combined,Male,129,121,131,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,159080.19 +,1057962,8.78,ADHD-Combined,Male,129,121,131,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,735367.3 +,1057962,8.78,ADHD-Combined,Male,129,121,131,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1057962,8.78,ADHD-Combined,Male,129,121,131,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,494880.38 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,685.7 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1945.9 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,http://purl.org/nidash/fsl#,Background (mm^3),,,9328246.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1182673.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1173366.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1174454.9 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17432.9 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,716.9 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,687.6 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,519.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,346.2 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,661.8 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,610.7 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1460397.5 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,204858.2 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,287520.03 +,1068505,10.25,Typically Developing Children,Male,117,121,111,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,550.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,562.9 +,1068505,10.25,Typically Developing Children,Male,117,121,111,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1101.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1658.5 +,1068505,10.25,Typically Developing Children,Male,117,121,111,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3523.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3385.4 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52227.7 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10672.6 +,1068505,10.25,Typically Developing Children,Male,117,121,111,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3771.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3810.4 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,311.9 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2520.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1718.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2447.8 +,1068505,10.25,Typically Developing Children,Male,117,121,111,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,3880.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6148.5 +,1068505,10.25,Typically Developing Children,Male,117,121,111,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7455.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7438.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3498.8 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,372.3 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,10.1 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1530497.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,183.1 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,206797.61 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,289977.97 +,1068505,10.25,Typically Developing Children,Male,117,121,111,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,436.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,602.5 +,1068505,10.25,Typically Developing Children,Male,117,121,111,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1466.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1788.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2835.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3618.8 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,52298.4 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10728.7 +,1068505,10.25,Typically Developing Children,Male,117,121,111,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3803.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4176.3 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,361.4 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2446.2 +,1068505,10.25,Typically Developing Children,Male,117,121,111,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1853.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2644.8 +,1068505,10.25,Typically Developing Children,Male,117,121,111,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4282.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6022.8 +,1068505,10.25,Typically Developing Children,Male,117,121,111,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6729.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7268.8 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3563.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,515.8 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,8.3 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59660.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1050895.9 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1057080.9 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1047571.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,411655.8 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,577498.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,742154.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6185.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1458.5 +,1068505,10.25,Typically Developing Children,Male,117,121,111,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,185964.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,713808.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1068505,10.25,Typically Developing Children,Male,117,121,111,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,518474.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,921.9 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2597.2 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,http://purl.org/nidash/fsl#,Background (mm^3),,,9314567.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1323413.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1308944.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1309551.2 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21690.8 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,750.3 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,660.1 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,523.2 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,450.1 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,920.2 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1005.2 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1754135.6 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,225154.2 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,318067.25 +,1093743,11.92,Typically Developing Children,Male,125,120,125,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,503.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,630.6 +,1093743,11.92,Typically Developing Children,Male,125,120,125,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1600.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1933.4 +,1093743,11.92,Typically Developing Children,Male,125,120,125,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4191.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4244.8 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63468.5 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15314.3 +,1093743,11.92,Typically Developing Children,Male,125,120,125,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3843.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4192.2 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,491.9 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4965.7 +,1093743,11.92,Typically Developing Children,Male,125,120,125,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1984.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2384.3 +,1093743,11.92,Typically Developing Children,Male,125,120,125,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6300.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6297.6 +,1093743,11.92,Typically Developing Children,Male,125,120,125,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9732.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9220.7 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4320.4 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,495.5 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,36.7 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1768513.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,208.2 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,224367.84 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,317913.9 +,1093743,11.92,Typically Developing Children,Male,125,120,125,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,347.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,587.8 +,1093743,11.92,Typically Developing Children,Male,125,120,125,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1898.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1985.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4475.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4292.7 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63633.8 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13101.3 +,1093743,11.92,Typically Developing Children,Male,125,120,125,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4120.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4625.7 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,688.8 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3238.2 +,1093743,11.92,Typically Developing Children,Male,125,120,125,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2104.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2133.7 +,1093743,11.92,Typically Developing Children,Male,125,120,125,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6504.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6446.6 +,1093743,11.92,Typically Developing Children,Male,125,120,125,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9480.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8890.5 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4553.3 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,567.5 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,30.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68358.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1156538.2 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1166623.2 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1153097.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,449522.03 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,635981.1 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,832528.1 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10085.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1339.7 +,1093743,11.92,Typically Developing Children,Male,125,120,125,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,202479.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,689938.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1093743,11.92,Typically Developing Children,Male,125,120,125,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,560574.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,779.8 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2849.5 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,http://purl.org/nidash/fsl#,Background (mm^3),,,9328490.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1128860.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1116710.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1117675.2 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19721.6 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,778.4 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,787.6 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,993.4 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,501.9 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,877.1 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,756.5 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1440656.1 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,192935.58 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,274645.6 +,1094669,12.42,ADHD-Combined,Male,111,92,125,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,434.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,524.4 +,1094669,12.42,ADHD-Combined,Male,111,92,125,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1048.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1450.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3215.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3245.9 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53636.4 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11198.6 +,1094669,12.42,ADHD-Combined,Male,111,92,125,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3002.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3419.6 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,498.7 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3307.4 +,1094669,12.42,ADHD-Combined,Male,111,92,125,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1534.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1567.7 +,1094669,12.42,ADHD-Combined,Male,111,92,125,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4267.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4368.4 +,1094669,12.42,ADHD-Combined,Male,111,92,125,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8000.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7232.2 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3889.7 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,335.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,16.8 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1496784.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,158.6 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,191389.05 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,276555.06 +,1094669,12.42,ADHD-Combined,Male,111,92,125,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,412.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,545.1 +,1094669,12.42,ADHD-Combined,Male,111,92,125,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,961.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1493.4 +,1094669,12.42,ADHD-Combined,Male,111,92,125,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3169.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3118.9 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53787.1 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10881.1 +,1094669,12.42,ADHD-Combined,Male,111,92,125,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3368.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3497.2 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,534.4 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3198.5 +,1094669,12.42,ADHD-Combined,Male,111,92,125,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1560.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1492.8 +,1094669,12.42,ADHD-Combined,Male,111,92,125,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4277.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4332.8 +,1094669,12.42,ADHD-Combined,Male,111,92,125,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7911.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7463.6 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3875.5 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,246.8 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,8.2 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,52918.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,990530.25 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,998370.25 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,987361.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,384324.62 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,551200.6 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,712367.6 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7840.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,625.6 +,1094669,12.42,ADHD-Combined,Male,111,92,125,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,190803.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,674099.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1094669,12.42,ADHD-Combined,Male,111,92,125,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,481772.0 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1015.0 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1692.3 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1099481,8.04,ADHD-Combined,Female,116,120,109,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1115211E7 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1043944.0 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1029121.0 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1029036.1 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16049.2 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,713.6 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,356.6 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,485.9 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,485.2 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,715.4 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,771.0 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1353605.2 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,162445.67 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,253516.67 +,1099481,8.04,ADHD-Combined,Female,116,120,109,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,468.16064 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,664.2 +,1099481,8.04,ADHD-Combined,Female,116,120,109,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,811.30115 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1235.1 +,1099481,8.04,ADHD-Combined,Female,116,120,109,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3255.8445 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3289.0 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55145.3 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11659.7 +,1099481,8.04,ADHD-Combined,Female,116,120,109,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3380.8647 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3729.6 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,234.9 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5648.8 +,1099481,8.04,ADHD-Combined,Female,116,120,109,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1542.8021 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1735.7 +,1099481,8.04,ADHD-Combined,Female,116,120,109,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4342.456 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4928.6 +,1099481,8.04,ADHD-Combined,Female,116,120,109,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7110.19 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7393.5 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3605.5 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,375.5 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1429498.0 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,151.7 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,165797.52 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,258579.27 +,1099481,8.04,ADHD-Combined,Female,116,120,109,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,376.3905 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,602.5 +,1099481,8.04,ADHD-Combined,Female,116,120,109,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,710.22095 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1485.3 +,1099481,8.04,ADHD-Combined,Female,116,120,109,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3336.9746 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3595.8 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55331.2 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11373.8 +,1099481,8.04,ADHD-Combined,Female,116,120,109,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3454.0146 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3377.1 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,395.7 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4738.8 +,1099481,8.04,ADHD-Combined,Female,116,120,109,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1641.2223 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1519.2 +,1099481,8.04,ADHD-Combined,Female,116,120,109,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4440.876 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4853.5 +,1099481,8.04,ADHD-Combined,Female,116,120,109,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6781.679 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7495.2 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3661.7 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,429.0 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,34.8 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55266.0 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,898624.1 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,910094.1 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,895568.0 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,328243.2 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,512095.94 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,678463.94 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11470.0 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,732.2 +,1099481,8.04,ADHD-Combined,Female,116,120,109,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,150745.06 +,1099481,8.04,ADHD-Combined,Female,116,120,109,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,676920.4 +,1099481,8.04,ADHD-Combined,Female,116,120,109,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1099481,8.04,ADHD-Combined,Female,116,120,109,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,417547.44 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,733.2 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1948.1 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,http://purl.org/nidash/fsl#,Background (mm^3),,,9324541.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1083791.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1070231.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1071009.1 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18331.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,703.3 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,580.3 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,574.7 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,434.9 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,911.2 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,994.6 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1406787.4 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,186253.77 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,252313.89 +,1117299,13.5,Typically Developing Children,Male,124,124,119,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,596.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,578.2 +,1117299,13.5,Typically Developing Children,Male,124,124,119,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,879.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1544.1 +,1117299,13.5,Typically Developing Children,Male,124,124,119,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3607.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3347.4 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58322.1 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12125.4 +,1117299,13.5,Typically Developing Children,Male,124,124,119,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3388.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3474.2 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,222.8 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4418.4 +,1117299,13.5,Typically Developing Children,Male,124,124,119,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1798.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2053.7 +,1117299,13.5,Typically Developing Children,Male,124,124,119,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5439.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5601.3 +,1117299,13.5,Typically Developing Children,Male,124,124,119,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7942.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7619.6 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3351.1 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,463.3 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1430345.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,177.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,185697.98 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,249787.47 +,1117299,13.5,Typically Developing Children,Male,124,124,119,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,526.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,667.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1419.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1460.7 +,1117299,13.5,Typically Developing Children,Male,124,124,119,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3544.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3347.4 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58887.9 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11728.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3514.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3537.3 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,400.4 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4376.3 +,1117299,13.5,Typically Developing Children,Male,124,124,119,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1719.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1900.1 +,1117299,13.5,Typically Developing Children,Male,124,124,119,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5527.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5538.4 +,1117299,13.5,Typically Developing Children,Male,124,124,119,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7209.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7358.1 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3574.2 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,484.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,27.8 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56291.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,932159.1 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,942140.1 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,929466.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,371951.75 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,502101.34 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,676073.4 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9981.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,732.6 +,1117299,13.5,Typically Developing Children,Male,124,124,119,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,203245.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,613339.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1117299,13.5,Typically Developing Children,Male,124,124,119,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,475556.0 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,736.5 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2078.4 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,1.0 +,1127915,12.44,Typically Developing Children,Female,124,126,117,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1106513E7 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1303080.0 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1283479.0 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1283344.6 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22247.4 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1294.8 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,608.5 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,689.6 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,595.6 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,971.1 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,911.5 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1576407.4 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,240576.66 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,290895.34 +,1127915,12.44,Typically Developing Children,Female,124,126,117,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,703.56696 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,596.2 +,1127915,12.44,Typically Developing Children,Female,124,126,117,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,799.32654 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1437.3 +,1127915,12.44,Typically Developing Children,Female,124,126,117,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3902.203 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3994.1 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63687.5 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,17745.9 +,1127915,12.44,Typically Developing Children,Female,124,126,117,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3940.7727 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3969.9 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,382.1 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6869.8 +,1127915,12.44,Typically Developing Children,Female,124,126,117,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1465.6536 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1944.6 +,1127915,12.44,Typically Developing Children,Female,124,126,117,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5677.745 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5399.5 +,1127915,12.44,Typically Developing Children,Female,124,126,117,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8743.382 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7632.7 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4595.8 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,450.7 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,16.9 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1695715.0 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,133.1 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,237764.11 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,287678.53 +,1127915,12.44,Typically Developing Children,Female,124,126,117,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,438.89807 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,519.4 +,1127915,12.44,Typically Developing Children,Female,124,126,117,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,949.61584 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1710.5 +,1127915,12.44,Typically Developing Children,Female,124,126,117,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4212.092 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4144.7 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,65309.8 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,17552.2 +,1127915,12.44,Typically Developing Children,Female,124,126,117,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4255.9814 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4023.6 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,464.3 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8095.5 +,1127915,12.44,Typically Developing Children,Female,124,126,117,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1828.7421 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1972.7 +,1127915,12.44,Typically Developing Children,Female,124,126,117,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5269.437 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5393.0 +,1127915,12.44,Typically Developing Children,Female,124,126,117,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8099.6646 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7408.0 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4488.6 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,556.6 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.1 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61467.0 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1122557.6 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1138744.6 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1118419.0 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,478340.75 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,578573.9 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,770602.9 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,16187.0 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,901.4 +,1127915,12.44,Typically Developing Children,Female,124,126,117,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,183021.83 +,1127915,12.44,Typically Developing Children,Female,124,126,117,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,712082.9 +,1127915,12.44,Typically Developing Children,Female,124,126,117,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1127915,12.44,Typically Developing Children,Female,124,126,117,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,539208.94 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1014.7 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2448.0 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1132854,13.92,Typically Developing Children,Male,125,126,120,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1488173E7 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1287248.0 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1270179.0 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1270323.9 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22801.1 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,856.7 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,492.6 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,624.0 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,541.6 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,936.6 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,907.3 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1600205.2 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,247953.97 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,273795.72 +,1132854,13.92,Typically Developing Children,Male,125,126,120,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,403.75 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,471.6 +,1132854,13.92,Typically Developing Children,Male,125,126,120,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,621.5 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1820.4 +,1132854,13.92,Typically Developing Children,Male,125,126,120,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3498.0 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3456.0 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,66705.2 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13540.2 +,1132854,13.92,Typically Developing Children,Male,125,126,120,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3689.75 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4277.5 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,506.2 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5935.4 +,1132854,13.92,Typically Developing Children,Male,125,126,120,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1874.0 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2224.7 +,1132854,13.92,Typically Developing Children,Male,125,126,120,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4977.25 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5625.5 +,1132854,13.92,Typically Developing Children,Male,125,126,120,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8259.5 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8577.1 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4731.3 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,488.1 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,58.2 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1724870.0 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,233.5 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,248620.64 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,278758.6 +,1132854,13.92,Typically Developing Children,Male,125,126,120,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,337.25 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,523.7 +,1132854,13.92,Typically Developing Children,Male,125,126,120,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1037.75 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1692.4 +,1132854,13.92,Typically Developing Children,Male,125,126,120,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3456.0 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3566.5 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63120.6 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12563.6 +,1132854,13.92,Typically Developing Children,Male,125,126,120,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4307.25 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4851.7 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,287.4 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5581.7 +,1132854,13.92,Typically Developing Children,Male,125,126,120,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1784.5 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2401.9 +,1132854,13.92,Typically Developing Children,Male,125,126,120,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4761.25 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5077.7 +,1132854,13.92,Typically Developing Children,Male,125,126,120,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7155.5 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9674.0 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4697.0 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,485.6 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.1 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65500.0 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1116706.9 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1129499.9 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1114341.0 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,496574.62 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,552554.3 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,748776.3 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12793.0 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1104.2 +,1132854,13.92,Typically Developing Children,Male,125,126,120,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,248084.0 +,1132854,13.92,Typically Developing Children,Male,125,126,120,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,689491.0 +,1132854,13.92,Typically Developing Children,Male,125,126,120,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,9.6 +,1132854,13.92,Typically Developing Children,Male,125,126,120,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,647477.75 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1659.8 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2713.3 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,http://purl.org/nidash/fsl#,Background (mm^3),,,9321919.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1233263.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1209432.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1209498.5 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21475.5 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,864.7 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,562.5 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,666.6 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,378.4 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,884.1 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1315.1 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1612115.9 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,226104.19 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,273208.2 +,1159908,15.08,ADHD-Combined,Male,120,126,111,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,518.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,475.4 +,1159908,15.08,ADHD-Combined,Male,120,126,111,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1156.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1485.3 +,1159908,15.08,ADHD-Combined,Male,120,126,111,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3738.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3726.8 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59156.8 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15120.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3755.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4099.9 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,915.4 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8619.1 +,1159908,15.08,ADHD-Combined,Male,120,126,111,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1877.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2099.8 +,1159908,15.08,ADHD-Combined,Male,120,126,111,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5227.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5452.2 +,1159908,15.08,ADHD-Combined,Male,120,126,111,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8400.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7965.8 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4395.5 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,556.9 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,39.7 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1692819.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,275.2 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,225198.3 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,276771.88 +,1159908,15.08,ADHD-Combined,Male,120,126,111,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,519.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,488.3 +,1159908,15.08,ADHD-Combined,Male,120,126,111,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1309.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1694.5 +,1159908,15.08,ADHD-Combined,Male,120,126,111,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4003.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3980.1 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58213.8 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13785.4 +,1159908,15.08,ADHD-Combined,Male,120,126,111,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4212.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4544.6 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,1128.2 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7021.7 +,1159908,15.08,ADHD-Combined,Male,120,126,111,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1793.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1902.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5170.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5466.8 +,1159908,15.08,ADHD-Combined,Male,120,126,111,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8052.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8072.3 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4448.9 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,694.2 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,22.1 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61834.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1065014.5 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1083307.5 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1062894.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,451302.47 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,549980.06 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,729989.06 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,18293.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1177.8 +,1159908,15.08,ADHD-Combined,Male,120,126,111,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,278883.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,693748.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1159908,15.08,ADHD-Combined,Male,120,126,111,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,583443.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1157.1 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1723.8 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,http://purl.org/nidash/fsl#,Background (mm^3),,,9324725.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1194676.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1178903.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1179628.2 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17056.2 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,717.5 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,663.2 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,627.5 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,379.5 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,901.4 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1069.9 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1455939.4 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,201969.81 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,291012.44 +,1177160,10.5,Typically Developing Children,Female,138,124,142,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,631.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,634.7 +,1177160,10.5,Typically Developing Children,Female,138,124,142,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1035.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1579.7 +,1177160,10.5,Typically Developing Children,Female,138,124,142,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3560.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3474.1 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59179.3 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15338.7 +,1177160,10.5,Typically Developing Children,Female,138,124,142,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3130.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3768.1 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,225.2 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7457.1 +,1177160,10.5,Typically Developing Children,Female,138,124,142,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1793.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1742.9 +,1177160,10.5,Typically Developing Children,Female,138,124,142,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5275.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5199.1 +,1177160,10.5,Typically Developing Children,Female,138,124,142,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7781.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6972.4 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3665.5 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,218.2 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,32.1 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1549120.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,240.5 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,199032.64 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,287138.4 +,1177160,10.5,Typically Developing Children,Female,138,124,142,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,500.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,696.4 +,1177160,10.5,Typically Developing Children,Female,138,124,142,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1667.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1920.1 +,1177160,10.5,Typically Developing Children,Female,138,124,142,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3039.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3555.3 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56136.6 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12759.7 +,1177160,10.5,Typically Developing Children,Female,138,124,142,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3618.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3738.3 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,285.5 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3918.6 +,1177160,10.5,Typically Developing Children,Female,138,124,142,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1780.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1622.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5416.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5357.5 +,1177160,10.5,Typically Developing Children,Female,138,124,142,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7698.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6587.9 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3934.2 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,359.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.8 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55854.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1038343.25 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1050347.2 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1034108.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,401002.47 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,578150.8 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,751151.8 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12004.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,848.2 +,1177160,10.5,Typically Developing Children,Female,138,124,142,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,194335.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,720788.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1177160,10.5,Typically Developing Children,Female,138,124,142,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,505994.0 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,833.6 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1827.7 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1187766,12.79,ADHD-Combined,Male,129,134,109,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1108726E7 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1264640.0 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1248017.0 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1248011.9 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19462.6 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1103.8 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,590.6 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,694.1 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,622.4 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,906.8 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,727.4 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1488828.8 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,218119.78 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,299946.66 +,1187766,12.79,ADHD-Combined,Male,129,134,109,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,645.0509 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,690.4 +,1187766,12.79,ADHD-Combined,Male,129,134,109,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,619.7809 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1605.8 +,1187766,12.79,ADHD-Combined,Male,129,134,109,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3535.1448 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3474.0 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,64572.7 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14189.0 +,1187766,12.79,ADHD-Combined,Male,129,134,109,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3759.9153 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4360.7 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,307.2 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6551.1 +,1187766,12.79,ADHD-Combined,Male,129,134,109,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1776.8824 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1736.2 +,1187766,12.79,ADHD-Combined,Male,129,134,109,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5502.218 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5538.3 +,1187766,12.79,ADHD-Combined,Male,129,134,109,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8434.872 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7261.1 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3994.6 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,355.6 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,9.3 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1642144.0 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,141.3 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,219850.47 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,297468.97 +,1187766,12.79,ADHD-Combined,Male,129,134,109,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,478.80066 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,702.9 +,1187766,12.79,ADHD-Combined,Male,129,134,109,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,813.9611 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1678.9 +,1187766,12.79,ADHD-Combined,Male,129,134,109,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3613.615 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3574.1 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61356.7 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13876.4 +,1187766,12.79,ADHD-Combined,Male,129,134,109,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3513.8647 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3970.1 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,246.1 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6080.9 +,1187766,12.79,ADHD-Combined,Male,129,134,109,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1742.3024 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1600.6 +,1187766,12.79,ADHD-Combined,Male,129,134,109,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5631.2275 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5594.8 +,1187766,12.79,ADHD-Combined,Male,129,134,109,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8070.451 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7071.3 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3841.4 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,544.5 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,17.2 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58471.0 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1096943.9 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1110428.9 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1093730.0 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,437970.25 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,597415.6 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,782560.6 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13485.0 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,885.9 +,1187766,12.79,ADHD-Combined,Male,129,134,109,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,154038.16 +,1187766,12.79,ADHD-Combined,Male,129,134,109,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,733570.5 +,1187766,12.79,ADHD-Combined,Male,129,134,109,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1187766,12.79,ADHD-Combined,Male,129,134,109,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,496810.22 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,653.2 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1735.8 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,http://purl.org/nidash/fsl#,Background (mm^3),,,1.111099E7 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1085985.0 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1076003.0 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1076135.8 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17103.7 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,977.5 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,589.2 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,516.5 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,386.2 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,678.6 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,756.5 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1302296.9 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,165050.12 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,276687.6 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,595.8408 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,862.9 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,766.08105 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1579.9 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3313.0347 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3965.1 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59661.0 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11503.1 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3355.5947 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3547.7 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,215.8 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3119.2 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1776.8824 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1774.9 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5407.7876 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5631.7 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7211.27 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6622.4 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3485.3 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,253.2 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,2.7 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1424138.0 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,126.0 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,163605.28 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,275110.7 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,516.0407 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,636.2 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,978.88135 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1691.8 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4246.696 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4171.5 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57921.2 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11291.4 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3150.7744 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3558.2 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,309.9 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3078.1 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1732.9924 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1635.3 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5429.0674 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5393.4 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7393.48 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6635.0 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3387.1 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,310.9 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56390.0 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,938792.7 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,945703.7 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,936567.0 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,328655.4 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,551798.3 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,725405.3 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6911.0 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,936.9 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,135532.5 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,728271.75 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1208795,9.57,ADHD-Inattentive,Female,118,109,122,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,414479.12 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,598.9 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1365.0 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1266183,9.67,Typically Developing Children,Female,120,106,128,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3059877E7 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1086822.0 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1078800.0 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1079148.5 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21561.5 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,640.5 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,611.0 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,497.9 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,361.7 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,728.2 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,596.8 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1303403.0 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,184868.69 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,251885.72 +,1266183,9.67,Typically Developing Children,Female,120,106,128,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,347.99774 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,715.5 +,1266183,9.67,Typically Developing Children,Female,120,106,128,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1039.9933 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1369.0 +,1266183,9.67,Typically Developing Children,Female,120,106,128,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3678.976 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3824.9 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59553.0 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14063.4 +,1266183,9.67,Typically Developing Children,Female,120,106,128,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3646.9763 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3703.5 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,302.0 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2240.9 +,1266183,9.67,Typically Developing Children,Female,120,106,128,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1782.9884 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1917.3 +,1266183,9.67,Typically Developing Children,Female,120,106,128,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4915.9683 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5102.4 +,1266183,9.67,Typically Developing Children,Female,120,106,128,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7783.949 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7291.0 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3492.6 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,457.0 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.4 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1384323.0 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,218.1 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,185755.86 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,257944.3 +,1266183,9.67,Typically Developing Children,Female,120,106,128,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,265.99826 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,733.0 +,1266183,9.67,Typically Developing Children,Female,120,106,128,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1205.9922 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1629.7 +,1266183,9.67,Typically Developing Children,Female,120,106,128,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4147.973 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4008.6 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56722.0 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12766.9 +,1266183,9.67,Typically Developing Children,Female,120,106,128,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3745.9756 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3751.1 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,212.2 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2363.2 +,1266183,9.67,Typically Developing Children,Female,120,106,128,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1737.9886 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1755.5 +,1266183,9.67,Typically Developing Children,Female,120,106,128,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5040.9673 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4838.1 +,1266183,9.67,Typically Developing Children,Female,120,106,128,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7895.9487 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6876.6 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3885.7 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,369.9 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,42.0 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56417.0 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,938291.56 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,943877.56 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,936417.0 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,370624.56 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,509830.0 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,682606.0 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,5586.0 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1432.7 +,1266183,9.67,Typically Developing Children,Female,120,106,128,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,162740.94 +,1266183,9.67,Typically Developing Children,Female,120,106,128,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,529904.5 +,1266183,9.67,Typically Developing Children,Female,120,106,128,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1266183,9.67,Typically Developing Children,Female,120,106,128,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,437377.16 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,922.5 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1805.8 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1283494,8.61,ADHD-Combined,Male,107,106,106,http://purl.org/nidash/fsl#,Background (mm^3),,,1.110975E7 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1282794.0 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1266868.0 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1267145.2 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18709.9 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,905.6 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,518.0 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,711.4 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,604.3 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,934.7 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,758.3 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1495650.9 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,219786.53 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,308951.5 +,1283494,8.61,ADHD-Combined,Male,107,106,106,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,559.92755 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,588.2 +,1283494,8.61,ADHD-Combined,Male,107,106,106,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,823.2664 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1517.5 +,1283494,8.61,ADHD-Combined,Male,107,106,106,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3648.174 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3741.4 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62478.0 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12617.7 +,1283494,8.61,ADHD-Combined,Male,107,106,106,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3497.8848 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3929.3 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,327.0 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6607.6 +,1283494,8.61,ADHD-Combined,Male,107,106,106,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1114.5352 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2211.7 +,1283494,8.61,ADHD-Combined,Male,107,106,106,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5370.5166 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5631.6 +,1283494,8.61,ADHD-Combined,Male,107,106,106,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7757.856 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7761.7 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3620.5 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,473.6 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,5.7 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1632856.0 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,97.3 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,221484.39 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,305740.78 +,1283494,8.61,ADHD-Combined,Male,107,106,106,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,502.7378 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,670.7 +,1283494,8.61,ADHD-Combined,Male,107,106,106,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,646.3772 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1630.0 +,1283494,8.61,ADHD-Combined,Male,107,106,106,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3606.9443 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3589.1 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63384.7 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12988.4 +,1283494,8.61,ADHD-Combined,Male,107,106,106,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3754.5737 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3724.7 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,300.5 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4879.5 +,1283494,8.61,ADHD-Combined,Male,107,106,106,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1885.9318 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1782.4 +,1283494,8.61,ADHD-Combined,Male,107,106,106,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5668.435 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6174.8 +,1283494,8.61,ADHD-Combined,Male,107,106,106,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8212.714 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7523.8 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3695.2 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,565.1 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,30.9 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59997.0 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1119182.2 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1131844.2 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1115604.0 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,441270.9 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,614692.3 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,800724.3 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12662.0 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,646.2 +,1283494,8.61,ADHD-Combined,Male,107,106,106,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,153567.78 +,1283494,8.61,ADHD-Combined,Male,107,106,106,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,763073.56 +,1283494,8.61,ADHD-Combined,Male,107,106,106,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1283494,8.61,ADHD-Combined,Male,107,106,106,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,501998.34 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,838.2 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1830.2 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1320247,8.59,Typically Developing Children,Male,122,108,131,http://purl.org/nidash/fsl#,Background (mm^3),,,1.111503E7 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1104626.0 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1088472.0 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1088621.1 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15662.8 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,847.0 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,414.9 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,473.5 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,505.7 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,783.5 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,770.9 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1289717.6 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,192695.64 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,256022.33 +,1320247,8.59,Typically Developing Children,Male,122,108,131,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,348.46048 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,795.1 +,1320247,8.59,Typically Developing Children,Male,122,108,131,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,183.54025 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1426.5 +,1320247,8.59,Typically Developing Children,Male,122,108,131,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4071.1355 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4168.4 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,50189.3 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12663.5 +,1320247,8.59,Typically Developing Children,Male,122,108,131,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3363.5747 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3058.0 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,382.7 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5714.1 +,1320247,8.59,Typically Developing Children,Male,122,108,131,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1673.1423 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1820.0 +,1320247,8.59,Typically Developing Children,Male,122,108,131,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4810.6167 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5171.6 +,1320247,8.59,Typically Developing Children,Male,122,108,131,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6536.959 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7136.0 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3781.0 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,744.7 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1445812.0 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,89.8 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,194175.45 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,258472.72 +,1320247,8.59,Typically Developing Children,Male,122,108,131,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,369.7405 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,670.4 +,1320247,8.59,Typically Developing Children,Male,122,108,131,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,426.9306 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1712.7 +,1320247,8.59,Typically Developing Children,Male,122,108,131,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4041.8755 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4286.2 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,52770.7 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13718.9 +,1320247,8.59,Typically Developing Children,Male,122,108,131,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3145.4543 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3405.9 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,462.3 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5764.9 +,1320247,8.59,Typically Developing Children,Male,122,108,131,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1643.8823 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1726.6 +,1320247,8.59,Typically Developing Children,Male,122,108,131,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4835.8867 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4936.2 +,1320247,8.59,Typically Developing Children,Male,122,108,131,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6382.6787 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7206.4 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3622.0 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,518.8 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57062.0 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,961451.1 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,974447.1 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,958172.0 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,386871.1 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,514495.06 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,676060.06 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12996.0 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1460.4 +,1320247,8.59,Typically Developing Children,Male,122,108,131,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,147426.72 +,1320247,8.59,Typically Developing Children,Male,122,108,131,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,623305.4 +,1320247,8.59,Typically Developing Children,Male,122,108,131,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1320247,8.59,Typically Developing Children,Male,122,108,131,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,416423.56 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,713.1 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1655.4 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,http://purl.org/nidash/fsl#,Background (mm^3),,,9325458.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1225380.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1210330.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1210824.5 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18698.3 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,647.5 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,492.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,475.4 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,484.3 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,814.4 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,840.6 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1550892.9 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,199014.56 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,303415.6 +,1341865,9.25,ADHD-Combined,Male,116,100,126,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,467.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,533.8 +,1341865,9.25,ADHD-Combined,Male,116,100,126,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,802.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1719.6 +,1341865,9.25,ADHD-Combined,Male,116,100,126,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3507.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3667.6 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59428.3 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12153.8 +,1341865,9.25,ADHD-Combined,Male,116,100,126,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3250.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3898.2 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,564.8 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5877.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1712.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1774.4 +,1341865,9.25,ADHD-Combined,Male,116,100,126,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4973.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5231.1 +,1341865,9.25,ADHD-Combined,Male,116,100,126,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8068.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8200.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3787.3 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,375.6 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,27.7 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1615024.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,146.8 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,198162.1 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,307589.22 +,1341865,9.25,ADHD-Combined,Male,116,100,126,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,337.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,506.9 +,1341865,9.25,ADHD-Combined,Male,116,100,126,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,840.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1651.4 +,1341865,9.25,ADHD-Combined,Male,116,100,126,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3678.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3809.2 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60738.5 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11775.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3777.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3800.7 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,494.3 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4515.4 +,1341865,9.25,ADHD-Combined,Male,116,100,126,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1800.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1747.8 +,1341865,9.25,ADHD-Combined,Male,116,100,126,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5250.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5294.7 +,1341865,9.25,ADHD-Combined,Male,116,100,126,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7729.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8001.4 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3738.8 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,428.3 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,25.1 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59061.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1069017.5 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1080934.5 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1066653.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,397176.66 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,611004.8 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,790494.8 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11917.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,637.5 +,1341865,9.25,ADHD-Combined,Male,116,100,126,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,200518.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,741869.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1341865,9.25,ADHD-Combined,Male,116,100,126,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,518086.0 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,3136.0 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,3164.5 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1356553,11.75,ADHD-Combined,Male,109,98,119,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1013837E7 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1177933.0 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1133112.0 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1132064.5 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19030.7 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,893.9 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,423.7 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,418.0 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,566.5 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,924.3 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,658.3 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1546879.4 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,194572.28 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,272033.03 +,1356553,11.75,ADHD-Combined,Male,109,98,119,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,485.15625 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,497.8 +,1356553,11.75,ADHD-Combined,Male,109,98,119,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1039.7461 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1696.4 +,1356553,11.75,ADHD-Combined,Male,109,98,119,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4281.1523 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4512.0 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58336.5 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12025.0 +,1356553,11.75,ADHD-Combined,Male,109,98,119,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3409.2773 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3710.0 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,1240.0 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,17707.7 +,1356553,11.75,ADHD-Combined,Male,109,98,119,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1969.6289 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2131.9 +,1356553,11.75,ADHD-Combined,Male,109,98,119,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5283.1055 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5448.8 +,1356553,11.75,ADHD-Combined,Male,109,98,119,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6806.25 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7481.7 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4073.7 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,500.6 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,15.0 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1582003.0 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,82.5 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,189025.77 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,271935.47 +,1356553,11.75,ADHD-Combined,Male,109,98,119,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,323.4375 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,650.8 +,1356553,11.75,ADHD-Combined,Male,109,98,119,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,609.96094 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1876.4 +,1356553,11.75,ADHD-Combined,Male,109,98,119,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4057.9102 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4873.2 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55620.8 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15322.0 +,1356553,11.75,ADHD-Combined,Male,109,98,119,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3533.2031 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3945.7 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,1464.0 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,16471.3 +,1356553,11.75,ADHD-Combined,Male,109,98,119,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1838.6719 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2048.8 +,1356553,11.75,ADHD-Combined,Male,109,98,119,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5043.164 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5410.3 +,1356553,11.75,ADHD-Combined,Male,109,98,119,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6682.324 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8113.8 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3835.4 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,426.8 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.4 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62273.0 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,993239.56 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1031198.56 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,990802.0 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,383598.06 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,543968.5 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,721302.5 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,37959.0 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,744.0 +,1356553,11.75,ADHD-Combined,Male,109,98,119,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,206797.84 +,1356553,11.75,ADHD-Combined,Male,109,98,119,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,704378.3 +,1356553,11.75,ADHD-Combined,Male,109,98,119,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1356553,11.75,ADHD-Combined,Male,109,98,119,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,506247.38 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,823.9 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1641.9 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1359325,10.76,Typically Developing Children,Male,138,135,131,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1111596E7 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1186973.0 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1177019.0 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1176695.1 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16801.1 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,860.1 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,600.1 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,578.1 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,390.9 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,583.9 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,626.8 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1430105.0 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,197227.25 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,293366.78 +,1359325,10.76,Typically Developing Children,Male,138,135,131,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,517.3707 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,605.2 +,1359325,10.76,Typically Developing Children,Male,138,135,131,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,485.45068 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1414.8 +,1359325,10.76,Typically Developing Children,Male,138,135,131,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4096.406 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3600.2 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54760.2 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13252.7 +,1359325,10.76,Typically Developing Children,Male,138,135,131,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3356.9246 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3836.7 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,240.8 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2908.5 +,1359325,10.76,Typically Developing Children,Male,138,135,131,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1601.3223 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1941.4 +,1359325,10.76,Typically Developing Children,Male,138,135,131,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5413.1074 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6028.9 +,1359325,10.76,Typically Developing Children,Male,138,135,131,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6866.7993 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6807.2 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3950.0 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,366.5 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,35.3 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1567202.0 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,96.6 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,199874.7 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,294330.44 +,1359325,10.76,Typically Developing Children,Male,138,135,131,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,381.7105 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,593.0 +,1359325,10.76,Typically Developing Children,Male,138,135,131,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,647.7109 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1761.5 +,1359325,10.76,Typically Developing Children,Male,138,135,131,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3942.1255 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3680.7 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,52359.1 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12581.3 +,1359325,10.76,Typically Developing Children,Male,138,135,131,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3769.225 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4009.4 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,355.7 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3111.1 +,1359325,10.76,Typically Developing Children,Male,138,135,131,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1643.8823 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1953.0 +,1359325,10.76,Typically Developing Children,Male,138,135,131,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5709.6978 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6068.8 +,1359325,10.76,Typically Developing Children,Male,138,135,131,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6836.2095 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6689.5 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4095.4 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,488.1 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,41.7 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58756.0 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1046928.2 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1053877.1 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1043841.0 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,397101.97 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,587697.25 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,754116.25 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6949.0 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1458.2 +,1359325,10.76,Typically Developing Children,Male,138,135,131,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,165613.16 +,1359325,10.76,Typically Developing Children,Male,138,135,131,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,694863.44 +,1359325,10.76,Typically Developing Children,Male,138,135,131,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1359325,10.76,Typically Developing Children,Male,138,135,131,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,442362.6 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,946.0 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2559.8 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1399863,12.83,ADHD-Combined,Male,94,85,103,http://purl.org/nidash/fsl#,Background (mm^3),,,1.0170712E7 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1313335.0 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1295536.0 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1295799.2 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21864.0 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1043.9 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,733.2 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,783.6 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,582.1 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1013.0 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1074.0 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1645689.6 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,236914.3 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,300135.44 +,1399863,12.83,ADHD-Combined,Male,94,85,103,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,815.1 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,727.8 +,1399863,12.83,ADHD-Combined,Male,94,85,103,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1089.3999 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1976.1 +,1399863,12.83,ADHD-Combined,Male,94,85,103,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3931.2 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4167.5 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61691.4 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15512.8 +,1399863,12.83,ADHD-Combined,Male,94,85,103,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4326.4 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4722.7 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,513.7 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6683.6 +,1399863,12.83,ADHD-Combined,Male,94,85,103,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1949.9999 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2321.0 +,1399863,12.83,ADHD-Combined,Male,94,85,103,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6025.5 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5725.4 +,1399863,12.83,ADHD-Combined,Male,94,85,103,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9015.5 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7798.8 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4421.8 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,393.2 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,40.6 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1738129.0 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,166.9 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,238078.34 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,301093.22 +,1399863,12.83,ADHD-Combined,Male,94,85,103,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,629.19995 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,842.5 +,1399863,12.83,ADHD-Combined,Male,94,85,103,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,980.19995 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2115.8 +,1399863,12.83,ADHD-Combined,Male,94,85,103,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4050.7998 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4146.6 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61644.9 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15788.9 +,1399863,12.83,ADHD-Combined,Male,94,85,103,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3858.4 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,5196.3 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,523.4 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5621.8 +,1399863,12.83,ADHD-Combined,Male,94,85,103,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2038.3999 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2057.1 +,1399863,12.83,ADHD-Combined,Male,94,85,103,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5716.0996 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5989.8 +,1399863,12.83,ADHD-Combined,Male,94,85,103,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8477.3 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7478.7 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4083.5 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,431.9 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,11.1 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65798.0 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1143887.2 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1157391.2 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1141623.0 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,474992.66 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,601228.6 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,790191.6 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13504.0 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1394.0 +,1399863,12.83,ADHD-Combined,Male,94,85,103,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,189793.5 +,1399863,12.83,ADHD-Combined,Male,94,85,103,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,752294.4 +,1399863,12.83,ADHD-Combined,Male,94,85,103,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1399863,12.83,ADHD-Combined,Male,94,85,103,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,571935.0 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,639.7 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1477.2 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1411536,13.17,Typically Developing Children,Male,112,106,114,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1508741E7 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1296404.0 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1283200.0 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1283280.5 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19971.0 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,907.6 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,508.7 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,780.1 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,716.1 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,937.0 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,558.2 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1470172.9 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,239342.11 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,303359.62 +,1411536,13.17,Typically Developing Children,Male,112,106,114,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,177.5 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,596.6 +,1411536,13.17,Typically Developing Children,Male,112,106,114,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,898.25 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1712.9 +,1411536,13.17,Typically Developing Children,Male,112,106,114,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2081.25 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4112.5 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55493.6 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11896.0 +,1411536,13.17,Typically Developing Children,Male,112,106,114,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,956.75 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4087.6 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,435.3 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4562.3 +,1411536,13.17,Typically Developing Children,Male,112,106,114,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1044.0 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2289.2 +,1411536,13.17,Typically Developing Children,Male,112,106,114,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,2931.75 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5822.1 +,1411536,13.17,Typically Developing Children,Male,112,106,114,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,4725.5 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8420.6 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4555.4 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,319.0 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,26.6 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1612077.0 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,176.1 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,238883.19 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,305407.6 +,1411536,13.17,Typically Developing Children,Male,112,106,114,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,172.25 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,682.5 +,1411536,13.17,Typically Developing Children,Male,112,106,114,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1157.5 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1987.0 +,1411536,13.17,Typically Developing Children,Male,112,106,114,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2665.5 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4190.2 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53070.1 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11171.7 +,1411536,13.17,Typically Developing Children,Male,112,106,114,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,1026.0 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3722.5 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,1063.3 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4622.0 +,1411536,13.17,Typically Developing Children,Male,112,106,114,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,998.5 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2107.6 +,1411536,13.17,Typically Developing Children,Male,112,106,114,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,2418.5 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5780.3 +,1411536,13.17,Typically Developing Children,Male,112,106,114,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,4342.0 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8534.9 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4271.6 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,296.7 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,23.2 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65105.0 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1153792.5 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1164592.5 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1151888.0 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,478225.28 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,608767.2 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,783150.2 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10800.0 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,814.1 +,1411536,13.17,Typically Developing Children,Male,112,106,114,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,186889.5 +,1411536,13.17,Typically Developing Children,Male,112,106,114,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,765233.75 +,1411536,13.17,Typically Developing Children,Male,112,106,114,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1411536,13.17,Typically Developing Children,Male,112,106,114,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,624547.0 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1349.3 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2625.4 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1435954,11.92,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1102289E7 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1286063.0 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1265509.0 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1265348.6 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19584.9 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,898.3 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,547.9 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,689.7 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,616.1 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,858.1 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1219.3 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1638739.4 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,246940.83 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,295180.78 +,1435954,11.92,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,549.2908 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,798.5 +,1435954,11.92,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1045.3815 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1670.5 +,1435954,11.92,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4271.966 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4088.4 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,43518.6 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10560.0 +,1435954,11.92,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4656.3364 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4446.1 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,694.7 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7896.7 +,1435954,11.92,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2198.493 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2202.7 +,1435954,11.92,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5778.858 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6040.6 +,1435954,11.92,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8863.132 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8447.3 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4556.3 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,517.5 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,55.7 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1735352.0 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,169.7 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,248220.6 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,297037.38 +,1435954,11.92,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,429.59058 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,683.8 +,1435954,11.92,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1163.7516 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2068.9 +,1435954,11.92,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4209.4556 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4053.2 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,44736.2 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10627.8 +,1435954,11.92,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4780.0264 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4895.9 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,410.3 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6084.5 +,1435954,11.92,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2189.183 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1930.3 +,1435954,11.92,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6082.098 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6144.4 +,1435954,11.92,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8357.731 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8589.6 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4637.2 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,704.3 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,21.9 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67238.0 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1157757.6 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1173407.6 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1154641.0 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,495161.4 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,592218.1 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,749786.1 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15650.0 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1516.1 +,1435954,11.92,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,226771.97 +,1435954,11.92,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,704741.4 +,1435954,11.92,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1435954,11.92,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,536039.94 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,846.7 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1716.6 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1105676E7 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1277921.0 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1254727.0 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1255386.5 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21231.9 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1149.7 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,584.7 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,631.4 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,672.0 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1161.2 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1109.5 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1631806.1 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,233579.06 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,286022.34 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,727.511 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,669.3 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,985.5314 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1478.4 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4193.4956 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4031.5 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62374.4 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14694.3 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3714.695 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3991.9 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,520.6 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,9603.2 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2009.6328 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2234.9 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5526.1577 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5500.1 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8509.352 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7568.9 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4524.4 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,732.6 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.1 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1675551.0 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,153.6 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,233895.67 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,288386.44 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,586.5308 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,635.5 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,876.4712 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1851.8 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4353.096 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4192.8 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59314.0 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14072.1 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3823.7554 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4235.1 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,363.6 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8186.1 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2026.9229 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2160.4 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5584.6777 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5411.4 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8269.951 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7612.3 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4563.6 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,940.3 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,9.6 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62793.0 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1108141.5 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1127901.5 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1103907.0 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,467474.72 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,574408.8 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,760108.8 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,19760.0 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,922.2 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,196971.94 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,718334.0 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1471736,13.32,ADHD-Inattentive,Male,99,91,106,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,531517.94 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1032.2 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1736.8 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1494102,10.33,Typically Developing Children,Male,140,135,137,http://purl.org/nidash/fsl#,Background (mm^3),,,9319900.0 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1314817.0 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1295127.0 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1296070.1 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19620.0 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,716.8 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,707.5 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,625.7 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,541.1 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,927.3 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1132.5 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1651416.0 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,221871.69 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,320150.34 +,1494102,10.33,Typically Developing Children,Male,140,135,137,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,635.0001 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,640.0 +,1494102,10.33,Typically Developing Children,Male,140,135,137,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1199.0002 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1711.6 +,1494102,10.33,Typically Developing Children,Male,140,135,137,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4812.001 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4718.4 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62708.2 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13168.3 +,1494102,10.33,Typically Developing Children,Male,140,135,137,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2850.0007 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3703.4 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,580.6 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6609.4 +,1494102,10.33,Typically Developing Children,Male,140,135,137,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1887.0005 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1991.9 +,1494102,10.33,Typically Developing Children,Male,140,135,137,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5645.0015 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5733.1 +,1494102,10.33,Typically Developing Children,Male,140,135,137,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8673.002 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8022.8 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3815.5 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,360.0 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,112.1 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1692331.0 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,159.6 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,220387.9 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,320157.16 +,1494102,10.33,Typically Developing Children,Male,140,135,137,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,448.00012 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,678.9 +,1494102,10.33,Typically Developing Children,Male,140,135,137,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1036.0002 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1615.9 +,1494102,10.33,Typically Developing Children,Male,140,135,137,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5139.0015 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4748.2 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62469.1 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12691.5 +,1494102,10.33,Typically Developing Children,Male,140,135,137,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3672.001 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3919.3 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,339.3 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7696.0 +,1494102,10.33,Typically Developing Children,Male,140,135,137,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1836.0005 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2007.6 +,1494102,10.33,Typically Developing Children,Male,140,135,137,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5643.0015 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5492.7 +,1494102,10.33,Typically Developing Children,Male,140,135,137,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8275.002 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7473.0 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3871.9 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,589.8 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.3 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61389.0 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1147305.1 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1163125.1 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1142995.0 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,442259.6 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,640307.5 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,828654.5 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15820.0 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,781.8 +,1494102,10.33,Typically Developing Children,Male,140,135,137,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,225900.06 +,1494102,10.33,Typically Developing Children,Male,140,135,137,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,779767.1 +,1494102,10.33,Typically Developing Children,Male,140,135,137,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,1.0 +,1494102,10.33,Typically Developing Children,Male,140,135,137,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,562813.1 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1259.7 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1352.8 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1497055,8.56,ADHD-Combined,Male,125,119,126,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1116871E7 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1211492.0 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1197055.0 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1197228.9 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16834.8 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,762.9 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,413.8 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,539.4 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,416.3 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,749.8 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,738.3 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1464272.9 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,194177.02 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,306229.44 +,1497055,8.56,ADHD-Combined,Male,125,119,126,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,522.69073 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,669.6 +,1497055,8.56,ADHD-Combined,Male,125,119,126,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,577.2208 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1669.9 +,1497055,8.56,ADHD-Combined,Male,125,119,126,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2972.5542 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3769.4 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56119.0 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10424.6 +,1497055,8.56,ADHD-Combined,Male,125,119,126,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3076.2942 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3904.8 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,569.5 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3550.2 +,1497055,8.56,ADHD-Combined,Male,125,119,126,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1736.9824 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1908.7 +,1497055,8.56,ADHD-Combined,Male,125,119,126,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4662.9863 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5993.5 +,1497055,8.56,ADHD-Combined,Male,125,119,126,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6340.1187 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7162.3 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4070.8 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,365.2 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,14.9 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1593314.0 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,140.0 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,197761.44 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,307407.0 +,1497055,8.56,ADHD-Combined,Male,125,119,126,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,380.38052 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,703.9 +,1497055,8.56,ADHD-Combined,Male,125,119,126,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,670.3209 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1847.7 +,1497055,8.56,ADHD-Combined,Male,125,119,126,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2789.014 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4254.3 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55234.1 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,9892.8 +,1497055,8.56,ADHD-Combined,Male,125,119,126,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2815.6138 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3917.8 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,583.4 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6209.7 +,1497055,8.56,ADHD-Combined,Male,125,119,126,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1725.0123 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1694.9 +,1497055,8.56,ADHD-Combined,Male,125,119,126,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5426.407 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5759.3 +,1497055,8.56,ADHD-Combined,Male,125,119,126,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6297.5586 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7025.1 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4019.3 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,393.3 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.1 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60508.0 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1068473.9 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1079589.9 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1065776.0 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,391938.47 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,613636.44 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,785535.44 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11116.0 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1192.6 +,1497055,8.56,ADHD-Combined,Male,125,119,126,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,150142.58 +,1497055,8.56,ADHD-Combined,Male,125,119,126,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,772361.3 +,1497055,8.56,ADHD-Combined,Male,125,119,126,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1497055,8.56,ADHD-Combined,Male,125,119,126,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,464822.34 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1043.6 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1945.5 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1485915E7 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1285008.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1264098.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1264228.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17371.5 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,991.3 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,440.1 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,513.6 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,592.4 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,933.7 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,782.1 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1574852.6 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,215246.66 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,311415.1 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,523.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,816.9 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,818.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1839.3 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3623.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4731.8 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61333.8 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14241.4 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3712.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4207.8 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,592.4 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,9190.3 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1910.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2275.6 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6023.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6653.1 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8394.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8844.3 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4385.9 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,547.8 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,28.4 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1695280.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,196.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,214958.58 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,306319.62 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,369.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,750.1 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1117.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1760.6 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2781.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4632.2 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58658.2 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12926.5 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3499.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4208.7 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,234.1 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6586.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1725.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2251.7 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5542.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6373.7 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8385.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8498.4 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4307.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,501.9 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.2 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68442.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1119862.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1137067.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1116139.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,430205.22 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,617734.75 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,807271.75 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,17205.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1126.8 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,191355.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,694978.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15001,9.94,Typically Developing Children,Male,140,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,554227.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,652.2 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1150.4 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1491081E7 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1204648.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1188963.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1189738.6 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16253.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,772.7 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,424.8 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,434.2 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,418.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,738.4 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,913.1 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1346006.4 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,193975.8 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,311873.3 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,453.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,674.8 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1074.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1489.3 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3216.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3903.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,49005.7 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10584.3 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3657.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4038.9 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,577.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6407.2 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1500.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2328.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4717.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4949.7 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7947.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8020.1 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3495.7 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,416.4 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,13.2 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1548333.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,167.5 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,192579.89 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,313044.6 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,348.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,668.3 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,956.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1719.2 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3515.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3995.4 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,47189.8 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,9928.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3310.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4110.9 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,329.5 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5185.6 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1335.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1672.6 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,3574.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5232.9 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7653.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7991.1 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3739.6 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,365.3 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,11.7 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59761.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1075144.6 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1088205.6 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1070335.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,386555.7 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,624917.9 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,783311.9 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13061.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,458.7 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,145577.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,670407.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15002,7.17,Typically Developing Children,Female,136,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,477393.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,827.3 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1755.8 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1489056E7 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1282921.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1262355.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1263238.2 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18689.4 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,771.6 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,458.7 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,449.3 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,570.4 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,835.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,859.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1541536.2 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,204365.23 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,323118.9 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,337.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,784.1 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,954.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1672.9 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3523.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4744.7 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62920.7 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12200.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3665.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4127.7 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,426.2 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7622.8 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1433.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1838.5 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4525.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5516.5 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8047.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7868.2 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3711.3 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,397.6 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,12.7 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1629741.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,195.3 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,203747.56 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,319232.53 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,321.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,675.3 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,825.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1511.6 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3547.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4921.4 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63115.1 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11352.1 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4197.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4368.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,263.5 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8023.7 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1641.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1683.3 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4564.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5567.5 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7701.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7702.1 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3803.4 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,680.3 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,10.1 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61820.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1116069.2 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1133276.2 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1111225.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,408112.78 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,642351.44 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,832217.44 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,17207.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,439.6 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,177152.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,735742.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15003,9.18,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,493254.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,560.7 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1744.5 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1488217E7 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1147767.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1133530.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1133928.2 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15955.8 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,884.6 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,413.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,357.9 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,432.1 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,863.2 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,825.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1405375.9 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,184477.33 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,291948.22 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,602.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,592.7 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1147.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1539.3 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3432.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3609.8 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52670.5 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12923.5 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3172.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3361.8 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,445.7 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6075.8 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1610.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1718.8 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5074.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5308.7 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7696.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7028.4 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3569.3 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,279.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,22.4 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1486161.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,120.5 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,182273.6 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,287223.1 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,483.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,697.5 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1333.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1549.1 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3486.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3645.8 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54098.1 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12106.9 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3801.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3728.7 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,280.7 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4143.4 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1542.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1745.1 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5025.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5302.1 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7716.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6948.4 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3832.1 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,330.5 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.1 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55593.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1004206.25 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1015447.25 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1001036.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,366750.9 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,579171.3 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,742476.3 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11241.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,708.4 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,174737.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,647339.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15004,7.46,Typically Developing Children,Female,96,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,445728.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,659.4 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1076.9 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1485327E7 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1207784.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1197018.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1198005.8 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21804.1 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,792.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,520.5 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,479.9 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,505.8 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,887.3 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,548.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1564451.1 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,228848.64 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,269380.9 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,511.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,553.3 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,931.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1747.4 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3630.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3466.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56783.4 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16070.4 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3861.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4264.9 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,264.1 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3793.4 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1714.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1942.8 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5576.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5150.4 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8185.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7803.9 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4673.8 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,237.2 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,35.7 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1586014.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,239.9 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,226587.83 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,267535.3 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,508.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,602.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1715.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1822.2 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3749.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3593.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57178.1 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14655.7 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3694.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4271.7 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,314.7 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3947.2 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1664.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1749.9 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5470.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5119.2 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7801.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7996.2 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4390.8 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,376.9 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,32.6 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60333.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1055742.8 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1064354.8 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1051570.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,455436.47 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,536916.25 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,712282.25 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8612.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,403.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,162741.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,613603.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15005,21.13,Typically Developing Children,Female,111,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,549637.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,789.6 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1487.3 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1491469E7 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1060410.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1045832.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1045864.4 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16139.1 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,774.4 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,487.6 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,386.6 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,415.2 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,754.4 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,829.9 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1374918.5 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,190474.19 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,248276.72 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,463.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,446.2 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1379.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1336.4 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3179.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3294.3 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,46551.5 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12734.3 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3390.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3455.5 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,217.7 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5368.5 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1382.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1705.7 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4356.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4799.1 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7162.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6585.7 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3530.4 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,412.7 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,10.4 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1441403.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,105.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,186561.11 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,250472.38 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,401.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,403.8 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1333.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1408.9 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3439.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3360.7 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,46758.4 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11899.6 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3356.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3459.5 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,209.6 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5001.9 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1522.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1658.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4459.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4626.2 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7046.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6570.2 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3455.9 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,574.3 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.9 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,51322.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,929858.4 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,941431.4 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,926989.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,377035.28 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,498749.1 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,644936.1 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11573.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,465.4 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,204269.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,579168.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15006,21.81,Typically Developing Children,Female,128,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,470259.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,645.4 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1619.1 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1487357E7 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1069322.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1054309.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1054627.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17972.7 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,773.3 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,680.2 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,552.9 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,394.1 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,784.9 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,846.9 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1401606.2 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,187284.88 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,245414.52 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,567.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,537.1 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1125.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1647.5 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3430.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3563.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54700.8 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14764.2 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3465.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3727.5 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,313.5 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6883.9 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1646.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1927.5 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5551.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5980.1 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7495.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7287.2 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3783.6 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,520.5 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,27.5 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1430216.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,178.9 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,184084.16 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,242235.47 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,318.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,476.1 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1398.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1520.8 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3638.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3634.7 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54135.4 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14253.2 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3911.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3897.4 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,351.7 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3905.2 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1677.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1758.8 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5457.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5757.5 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7301.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7070.8 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3647.4 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,419.9 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,33.4 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57381.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,918690.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,930726.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,915986.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,371369.03 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,487649.97 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,654895.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12036.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,628.3 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,190267.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,569591.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15007,21.22,Typically Developing Children,Female,122,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,459515.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,823.5 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1674.4 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1483998E7 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1242531.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1226650.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1227530.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19158.2 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,959.3 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,541.2 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,619.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,455.2 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,765.8 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,842.5 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1480451.1 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,209812.9 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,301033.2 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,652.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,646.7 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1241.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1686.6 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4138.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4401.9 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59502.1 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14507.8 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3838.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4051.3 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,241.7 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5946.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1704.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2094.9 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5356.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5741.1 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8154.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7936.9 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4330.8 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,506.6 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,40.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1585185.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,246.7 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,207828.61 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,296983.34 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,427.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,730.2 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1079.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1557.4 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4411.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4498.1 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59727.6 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13449.2 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4215.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4310.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,357.6 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5466.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2035.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1991.8 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4990.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6042.8 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8098.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7642.3 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4341.2 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,511.3 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,31.1 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63670.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1082594.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1095238.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1078303.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,417641.5 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,598016.56 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,782560.56 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12644.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,896.7 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,186113.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,690344.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15008,8.64,Typically Developing Children,Female,141,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,506832.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,701.5 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1358.2 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1492816E7 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1058876.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1049968.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1050333.8 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15216.2 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,653.3 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,472.7 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,409.5 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,367.1 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,688.8 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,750.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1253010.5 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,167923.14 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,269024.78 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,503.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,670.6 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,949.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1137.2 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3861.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3518.7 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52249.3 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11296.3 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3248.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3822.3 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,232.9 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2346.1 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1554.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1561.2 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4282.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4427.7 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6781.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6345.2 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3316.7 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,433.9 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,56.5 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1335926.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,201.4 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,166270.83 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,269496.03 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,398.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,621.6 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,710.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1301.3 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3854.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3746.6 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,51711.5 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10339.4 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3289.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4166.6 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,169.6 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2921.9 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1472.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1505.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4189.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4339.5 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6430.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6505.5 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3246.5 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,398.4 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,11.2 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,51453.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,926638.8 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,932828.8 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,923680.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,334193.97 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,538520.8 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,695225.8 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6190.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1344.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,158517.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,635093.0 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,4.8 +,15010,7.63,Typically Developing Children,Female,99,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,412322.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,866.6 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2022.3 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.148698E7 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1252817.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1237615.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1238208.4 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18665.7 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,713.7 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,366.2 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,458.9 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,428.6 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,653.7 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,665.1 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1496349.1 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,200988.64 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,318876.25 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,599.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,596.8 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1031.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1506.5 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3830.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4225.1 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55535.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14126.8 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3563.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3899.6 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,315.5 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7359.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1809.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1895.9 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4230.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5180.3 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7754.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7741.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3844.1 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,249.7 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,11.3 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1615557.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,171.2 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,200433.02 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,317954.4 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,491.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,626.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1283.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1634.7 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4484.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4393.7 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56728.1 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12524.2 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3525.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4170.9 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,333.3 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3689.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1761.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1765.9 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4999.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5336.7 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7997.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7699.3 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3649.6 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,376.8 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,10.6 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59691.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1101526.4 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1113278.4 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1097190.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,401421.66 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,636830.7 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,810838.7 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11752.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,757.4 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,164450.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,689068.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15011,7.26,Typically Developing Children,Male,124,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,481556.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,570.4 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1088.9 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1490129E7 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1105107.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1095475.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1095862.8 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17456.7 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,763.5 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,678.9 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,737.4 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,510.9 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,929.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,670.5 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1347426.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,179108.69 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,273484.6 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,499.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,529.2 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1221.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1291.6 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3279.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3141.1 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54725.1 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13314.5 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3388.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3617.2 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,434.1 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4037.4 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1536.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1620.6 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4404.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4522.3 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7759.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7000.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3423.4 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,496.8 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,50.2 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1423040.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,106.4 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,178852.03 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,275817.5 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,332.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,567.3 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1293.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1479.1 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3535.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3158.3 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54922.8 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12977.3 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3649.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3609.8 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,351.1 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2119.1 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1485.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1601.9 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4245.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4122.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7582.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7127.1 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3455.4 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,395.8 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.8 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,51728.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,962259.8 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,969673.8 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,958545.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,357960.72 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,549302.06 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,712473.06 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7414.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1874.8 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,168910.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,610676.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15012,8.96,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,451608.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,645.7 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1173.1 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1491036E7 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1390529.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1373648.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1374664.4 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18891.9 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1052.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,458.6 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,484.5 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,504.7 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1049.1 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,642.4 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1641911.6 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,225049.2 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,355545.94 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,766.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,974.7 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,562.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1748.8 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4152.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4744.3 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61652.8 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14539.8 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3566.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4101.2 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,215.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5013.2 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1684.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2042.5 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5133.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5740.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7175.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7869.5 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4216.5 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,374.9 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,31.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1746928.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,180.3 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,221254.08 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,356066.2 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,488.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,876.6 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,935.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1845.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2900.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4721.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61714.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13249.1 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3000.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3925.3 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,215.6 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8370.9 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1494.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1896.3 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4932.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5604.7 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6513.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7697.1 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4456.5 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,479.7 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,67.8 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64268.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1226129.4 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1240605.4 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1221066.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,446303.28 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,711612.1 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,901081.1 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14476.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,550.9 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,173919.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,814029.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15013,7.67,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,547982.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,701.9 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1515.6 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1484195E7 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1215941.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1203438.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1204090.8 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17662.7 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,755.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,528.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,564.7 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,487.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,680.1 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,960.9 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1465609.9 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,202850.84 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,301922.44 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,381.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,795.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,903.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1679.8 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4338.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4252.8 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56912.6 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13437.5 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3271.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3847.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,445.1 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4264.9 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1907.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1950.4 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5847.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5826.7 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8412.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7808.3 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3848.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,401.1 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,18.9 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1542452.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,139.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,200711.02 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,297016.47 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,462.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,642.1 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,825.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1694.9 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4757.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4526.9 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57756.5 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11719.7 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3229.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3940.1 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,230.8 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3921.1 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1785.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1979.3 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5767.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5728.8 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8257.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7635.9 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3793.5 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,381.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.9 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61307.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1066631.8 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1076035.8 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1063049.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,403561.88 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,598938.94 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,776126.94 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9404.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1167.4 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,170935.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,686137.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15014,7.09,Typically Developing Children,Female,121,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,475199.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,595.9 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1511.5 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1498463E7 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,989333.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,972611.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,973374.06 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,12414.2 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,667.3 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,268.1 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,269.7 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,312.8 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,581.2 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,841.6 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1236629.1 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,146453.86 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,261467.4 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,467.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,508.4 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,904.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1308.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3094.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3333.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,49977.4 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,8786.6 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2974.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3203.3 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,172.6 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7434.1 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1301.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1366.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,3748.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4042.7 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,5780.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,5581.1 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,2795.4 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,510.1 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,18.9 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1292436.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,128.1 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,144059.08 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,258482.73 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,216.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,567.2 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,706.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1361.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3199.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3345.4 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,49805.9 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,8782.3 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2916.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3158.8 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,144.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5355.3 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1189.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1910.4 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,3554.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,3380.5 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,5825.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,5696.6 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,2740.7 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,419.8 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,11.5 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,45635.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,857944.06 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,871771.06 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,855225.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,290512.94 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,519950.16 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,666020.1 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13827.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,358.7 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,157452.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,613201.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15015,8.1,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,363231.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,638.9 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1660.6 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1484938E7 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1312256.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1284192.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1285246.8 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19927.4 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,850.8 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,320.7 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,362.7 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,396.1 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,943.8 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1008.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1594647.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,208907.33 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,322898.94 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,638.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,700.6 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1015.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1469.1 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4178.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4248.3 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,65870.7 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13491.5 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3703.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3702.8 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,385.8 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,9610.1 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1851.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1962.1 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5846.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6147.2 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8739.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8544.4 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4108.1 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,250.1 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,107.4 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1680969.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,221.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,209022.03 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,323548.5 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,440.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,693.2 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1397.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1499.2 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4434.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4476.1 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,65534.9 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13247.4 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2061.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3495.3 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,552.7 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,14146.7 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1811.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1719.4 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6007.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5798.7 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7278.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8157.3 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4232.4 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,256.9 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,95.8 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62620.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1129724.8 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1154587.8 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1125935.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,417929.38 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,646447.44 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,841415.44 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,24863.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,935.8 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,198808.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,755810.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15016,8.3,Typically Developing Children,Male,96,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,515955.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,729.8 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1717.1 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1481794E7 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1311348.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1297057.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1297805.2 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,23486.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,987.9 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,714.7 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,726.2 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,503.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1067.6 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,814.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1598969.6 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,219073.86 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,314782.94 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,707.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,665.3 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,948.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1623.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3859.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3842.7 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,65016.1 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,17146.5 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3812.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3936.5 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,307.1 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5361.2 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1963.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2216.6 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5952.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5835.4 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9147.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7975.9 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4688.5 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,449.7 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.3 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1704050.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,255.8 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,217070.23 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,318403.22 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,509.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,676.6 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,800.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1484.5 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4117.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4046.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,65637.2 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15732.7 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4059.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3873.9 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,270.4 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4700.3 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1962.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2105.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5712.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5698.2 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8995.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7973.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4841.4 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,428.1 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,7.3 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63105.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1136890.2 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1148059.2 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1131469.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,436144.1 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,633186.2 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,829660.2 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11169.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1011.7 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,204385.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,687270.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15017,8.02,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,533074.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,861.7 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1360.8 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.148558E7 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1313839.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1302521.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1303379.6 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18232.2 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,926.4 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,612.9 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,503.7 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,579.7 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,782.9 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,864.6 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1519576.9 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,218604.4 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,336445.38 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,397.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,876.6 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,667.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1790.2 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3870.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,5522.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56590.2 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11981.8 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3709.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4280.5 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,353.9 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4036.4 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1800.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2415.3 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5026.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4960.6 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8878.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8835.1 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4208.2 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,220.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,5.5 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1655573.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,163.4 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,214098.86 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,330595.94 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,211.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,821.6 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1017.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1822.3 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3612.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5642.1 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55313.9 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10737.2 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3910.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4637.9 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,369.3 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3310.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1781.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1919.6 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5442.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5569.3 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8436.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8755.8 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4373.2 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,384.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,27.3 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68015.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1170989.6 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1179313.6 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1166787.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,432703.25 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,667041.3 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,848667.3 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8324.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1662.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,166582.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,759222.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15018,8.05,Typically Developing Children,Female,112,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,511151.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,558.4 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1602.2 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1485193E7 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1229520.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1219663.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1220279.2 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18512.1 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,961.3 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,718.7 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,758.1 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,585.1 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,934.3 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,584.8 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1454254.2 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,209205.77 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,307668.22 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,524.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,702.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1214.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1583.5 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3909.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4042.2 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57984.7 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12780.1 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3248.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3913.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,286.5 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3685.6 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1748.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2071.5 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5446.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6009.7 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7492.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7508.9 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4010.4 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,362.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,21.3 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1551541.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,147.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,203849.5 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,299010.8 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,582.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,806.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1345.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1525.8 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4334.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4246.4 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57321.6 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11528.9 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4188.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3896.2 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,328.5 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2641.9 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1687.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2007.2 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5589.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5965.7 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7837.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7305.4 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3936.8 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,408.4 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,27.4 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60999.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1083097.2 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1090385.2 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1080027.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,413055.28 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,606679.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,783669.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7288.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,827.2 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,164520.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,665090.0 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,1.9 +,15020,8.41,Typically Developing Children,Female,139,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,492938.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,716.7 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1956.2 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1487513E7 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1160441.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1149680.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1150351.1 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16928.6 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,738.5 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,629.1 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,606.2 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,362.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,824.3 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,785.9 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1373903.1 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,189444.56 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,285365.9 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,549.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,612.1 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1360.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1510.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3763.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3621.8 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57297.4 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11615.6 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3797.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3928.2 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,186.2 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4091.4 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1662.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1760.7 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5368.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5266.5 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7663.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7670.9 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3794.8 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,310.2 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,54.5 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1488235.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,150.9 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,189413.84 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,290964.8 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,435.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,573.9 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1126.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1601.6 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3304.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3441.9 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57049.4 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11444.2 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3834.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3883.5 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,204.6 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2609.5 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1393.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1697.2 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5215.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5357.9 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7354.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7499.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3738.9 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,407.3 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,58.6 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57315.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1015295.1 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1022740.1 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1011802.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,378858.4 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,576330.75 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,749169.75 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7445.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,854.6 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,166624.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,664457.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15021,7.52,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,455488.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,545.9 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1212.3 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1481298E7 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1306307.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1297420.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1298487.4 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20503.8 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,929.8 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,682.2 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,620.2 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,455.1 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,783.4 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,664.1 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1587309.2 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,230322.36 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,306018.8 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,700.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,744.3 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1540.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1798.1 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4039.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4152.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59013.5 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15488.5 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3826.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3992.6 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,295.5 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3105.2 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1884.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2352.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5731.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5907.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8292.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8785.8 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4092.7 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,403.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,9.3 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1649079.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,216.3 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,232127.77 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,315015.47 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,558.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,612.1 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1402.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1606.3 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4242.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4549.3 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59982.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14515.8 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4136.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4156.6 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,253.4 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2452.3 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1983.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2046.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5848.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6105.6 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8857.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8761.9 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3972.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,493.8 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,10.5 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64977.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1151695.4 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1158293.4 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1147219.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,462450.12 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,621034.25 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,806426.25 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6598.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1017.6 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,179262.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,667211.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15022,9.17,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,549170.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,588.8 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1038.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1489186E7 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1095672.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1087292.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1087969.1 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16847.8 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,880.6 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,576.3 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,595.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,401.4 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,938.4 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,802.3 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1260323.2 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,176936.31 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,275030.56 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,639.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,653.6 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1030.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1341.8 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3789.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4009.2 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,51408.8 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11120.3 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2774.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3554.4 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,362.8 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2530.5 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1459.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1798.2 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4841.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5462.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7417.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7120.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3679.6 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,453.5 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,10.4 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1398573.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,147.4 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,176178.98 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,275955.28 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,559.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,672.5 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1206.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1473.2 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4003.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4170.4 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53476.4 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10859.2 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3553.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3530.6 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,389.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2243.9 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1559.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1628.7 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5391.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5497.4 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6930.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6822.1 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3861.4 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,469.7 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.8 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56769.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,963193.1 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,969239.1 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,960063.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,353115.3 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,550985.9 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,713588.9 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6046.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,825.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,155142.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,656774.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15023,7.77,Typically Developing Children,Female,119,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,423230.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,776.7 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1708.8 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.14852E7 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1231709.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1219529.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1219975.8 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18153.4 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,804.1 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,460.3 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,478.8 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,456.2 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,855.6 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,897.1 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1512003.9 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,194605.44 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,310308.66 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,662.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,708.2 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1287.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1533.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3808.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3637.3 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61620.2 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12543.9 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3828.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3856.8 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,403.7 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3657.3 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1754.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1812.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4666.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5067.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8186.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7943.4 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3744.4 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,374.9 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,17.8 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1581325.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,227.7 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,196359.94 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,313420.72 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,518.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,523.1 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1423.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1740.1 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4113.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3789.2 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61055.7 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11396.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4142.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4143.9 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,282.7 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4004.5 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1725.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1604.7 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4937.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5000.5 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8087.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7712.6 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3934.2 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,471.1 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.4 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58384.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1075800.8 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1084704.8 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1072458.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,390965.38 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,623729.4 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,805652.4 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8904.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1466.9 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,174844.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,714737.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15024,7.25,Typically Developing Children,Male,136,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,492386.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,799.8 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1448.7 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.148487E7 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1183735.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1172487.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1173243.9 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17818.6 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,824.4 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,447.6 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,510.7 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,470.4 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,818.4 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,579.9 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1373066.4 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,193249.8 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,295521.6 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,630.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,778.6 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,782.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1750.6 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4545.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4594.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55749.6 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13108.5 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3779.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3695.5 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,158.1 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4132.6 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1772.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1794.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5459.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5412.2 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7522.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7299.1 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3922.9 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,334.5 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,11.7 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1489647.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,180.5 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,191787.02 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,295561.5 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,457.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,718.8 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1314.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1463.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4701.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4744.2 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55424.2 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11633.6 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3717.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4049.7 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,401.1 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3412.8 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1846.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1723.9 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5465.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5386.9 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7477.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7301.7 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4033.8 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,391.6 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,27.1 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59872.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1039342.94 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1047857.94 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1035093.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,385036.8 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,591083.1 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,764372.1 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8515.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,861.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,167117.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,679123.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15025,7.75,Typically Developing Children,Female,114,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,461668.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,664.9 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1815.9 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1485532E7 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1217817.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1207196.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1207891.5 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18640.2 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,787.3 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,546.5 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,439.9 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,372.1 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,765.5 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,764.7 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1441863.6 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,188794.75 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,315543.6 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,573.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,670.3 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1187.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1590.4 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3865.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3779.6 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58350.1 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13066.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3388.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4217.8 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,368.6 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3193.8 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1646.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2409.2 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5425.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4310.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8375.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7885.4 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3749.2 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,425.4 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,9.4 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1581950.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,153.4 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,186352.27 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,309963.84 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,421.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,665.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1173.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1586.6 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3981.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3865.7 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61019.7 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14433.6 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3800.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4345.3 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,346.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3149.1 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1822.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1804.8 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5177.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5309.7 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7971.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7564.9 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3768.9 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,406.8 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,29.2 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59057.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1063361.5 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1070872.5 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1058893.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,375147.03 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,625507.44 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,805807.44 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7511.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,841.8 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,162460.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,683906.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15026,10.11,Typically Developing Children,Female,113,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,482898.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,582.8 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1227.5 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1489854E7 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1115931.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1101381.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1101755.5 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20540.9 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,721.2 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,462.9 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,520.9 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,546.7 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,963.4 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,808.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1481745.4 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,190931.97 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,263445.3 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,282.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,664.8 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,879.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1445.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3569.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3629.8 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,51963.7 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15488.9 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3316.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3762.3 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,241.3 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6739.3 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1585.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2165.2 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4666.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5652.7 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7251.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7342.5 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4350.4 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,367.4 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.5 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1480663.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,175.7 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,187401.08 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,264938.16 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,519.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,654.2 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1186.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1630.9 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3625.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3591.6 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53944.1 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13461.9 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3658.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4010.2 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,400.5 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4220.4 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1750.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1924.6 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5303.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5672.8 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6893.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7221.3 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4337.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,417.4 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,34.5 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59338.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,969129.5 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,981145.5 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,965575.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,378333.03 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,528383.5 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,695129.5 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12016.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,378.4 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,194204.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,638252.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15027,14.89,Typically Developing Children,Female,123,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,499393.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,661.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1599.9 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1483275E7 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1266669.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1253209.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1254203.4 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21075.8 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,916.9 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,718.7 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,745.5 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,517.9 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,900.8 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,946.6 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1571893.4 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,201117.48 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,311566.38 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,619.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,787.7 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1032.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1690.9 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3757.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3502.8 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,66409.1 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15107.2 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3700.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3665.4 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,222.4 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5056.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1876.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1898.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6383.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6586.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8816.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8458.7 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4295.7 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,345.9 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,26.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1604635.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,197.1 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,201281.1 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,313558.4 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,526.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,829.1 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,759.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1611.6 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3679.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3584.8 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,65935.2 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15251.8 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3413.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3840.7 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,198.5 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4430.6 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1843.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1747.8 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6325.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6481.8 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8333.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8378.7 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4465.8 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,438.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.5 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63666.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1094072.4 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1104443.4 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1090054.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,402398.6 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,625124.75 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,822107.75 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10371.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,522.2 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,175626.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,721454.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15028,9.23,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,502035.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1105.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,3151.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1484839E7 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1218496.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1200070.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1201173.4 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19296.7 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,825.2 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,516.1 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,572.7 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,483.2 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,806.5 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1171.4 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1441155.2 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,198493.84 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,301595.66 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,626.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,580.1 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1287.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1712.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3659.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3895.1 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58092.9 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12261.5 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4106.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3959.9 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,157.4 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6794.1 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1675.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1876.7 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5568.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5773.5 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8155.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7383.2 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3932.6 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,389.8 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,24.2 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1598058.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,147.1 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,199148.12 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,300173.75 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,455.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,630.9 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1174.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1785.1 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3840.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3833.5 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59526.7 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11758.4 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3566.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4045.3 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,228.5 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5405.2 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1739.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1768.7 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5624.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5865.9 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8023.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7381.4 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4087.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,438.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,31.6 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60070.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1061812.4 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1074943.4 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1058282.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,397641.97 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,601769.44 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,780433.44 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13131.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,409.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,210922.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,719290.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15029,11.24,Typically Developing Children,Male,101,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,532074.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,952.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1784.7 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1482018E7 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1237954.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1208698.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1209373.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,23342.3 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,877.4 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,460.9 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,480.6 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,498.3 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1028.6 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1013.4 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1627011.4 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,203630.72 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,287564.2 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,721.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,676.2 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1337.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1665.7 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3840.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3967.6 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61753.7 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16979.6 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3913.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4002.5 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,230.4 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,10403.9 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2002.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2173.9 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5899.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5964.7 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9067.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8069.3 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4680.1 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,412.9 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,44.9 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1637403.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,268.4 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,207037.39 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,289985.66 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,635.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,557.3 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,888.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1393.1 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4030.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4098.7 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64871.1 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15430.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3619.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3728.5 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,336.6 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,13766.3 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2013.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2052.2 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5687.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5592.2 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8667.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7711.1 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4663.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,548.7 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,31.5 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62553.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1052896.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1078454.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1049910.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,410668.1 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,577549.9 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,767125.9 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,25558.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,700.9 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,212706.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,664113.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15030,14.45,Typically Developing Children,Male,114,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,507443.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,715.9 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1408.8 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.148079E7 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1235725.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1220299.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1221470.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22486.3 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,867.7 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,776.7 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,735.6 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,634.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1054.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,750.9 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1539811.2 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,217596.17 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,285935.53 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,750.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,732.3 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1331.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1661.6 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4114.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4157.4 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60597.2 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15648.9 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4103.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4124.9 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,264.1 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6294.4 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1951.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2304.9 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5928.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5825.6 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8399.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7741.1 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4571.2 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,508.4 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,62.8 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1596534.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,236.6 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,215449.03 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,285594.28 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,656.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,738.8 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1487.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1563.3 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4296.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4236.3 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60535.1 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15793.7 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4020.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4127.1 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,234.4 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5182.5 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2059.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2127.1 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6122.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5680.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8330.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7888.9 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4864.4 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,445.3 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,21.8 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63709.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1071343.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1084004.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1067033.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,433045.2 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,571529.8 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,757752.8 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12661.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,398.6 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,181563.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,665946.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15031,12.35,Typically Developing Children,Male,120,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,521864.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,866.6 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1918.2 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1484645E7 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1308924.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1295135.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1296217.5 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19529.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,789.5 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,442.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,551.7 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,627.6 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1051.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,774.5 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1577968.6 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,225109.08 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,324693.28 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,551.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,615.3 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,944.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1833.6 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4228.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3851.8 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55525.1 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13849.1 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4063.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4211.4 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,172.1 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4958.4 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1837.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2272.9 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5515.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5550.8 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7847.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7897.6 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3905.5 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,332.9 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,10.5 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1688417.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,223.1 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,222865.77 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,323851.38 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,365.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,709.6 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1346.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1927.3 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4176.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4018.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54302.6 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13147.5 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3781.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4270.7 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,134.1 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4771.1 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1834.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1824.8 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5649.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5867.8 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7555.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7460.9 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3978.5 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,350.5 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.4 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61710.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1161445.5 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1171767.5 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1156981.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,447974.84 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,648544.6 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,822044.6 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10322.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,885.7 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,201743.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,761191.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15032,10.9,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,545619.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,757.5 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1371.4 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1481586E7 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1279928.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1264374.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1265259.5 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18431.1 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,823.1 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,647.6 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,402.1 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,396.5 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,830.9 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,737.2 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1527154.4 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,210000.64 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,326100.25 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,628.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,800.8 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1311.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1969.9 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4052.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4207.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52488.4 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13772.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4338.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4307.9 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,222.5 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6120.7 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1905.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2061.9 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6052.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6293.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8466.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7817.5 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4083.7 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,443.9 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,12.1 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1664245.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,175.5 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,207681.22 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,323234.4 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,424.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,742.1 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1564.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1889.1 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4184.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4365.7 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53318.4 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13074.7 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4178.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4582.6 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,421.4 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5440.2 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1822.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1896.2 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5880.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6053.3 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7946.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7995.9 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4103.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,343.9 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,32.1 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64312.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1134828.5 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1147590.5 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1130316.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,417681.84 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,649334.6 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,821374.6 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12762.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,772.2 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,166670.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,703333.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15033,11.96,Typically Developing Children,Female,134,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,503960.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,672.9 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1415.4 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1482832E7 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1308852.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1298357.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1299136.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18519.2 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,869.3 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,572.2 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,544.9 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,524.6 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,874.7 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,668.1 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1560823.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,220075.78 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,321431.78 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,608.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,700.4 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1260.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1912.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4202.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4575.1 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57657.5 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15162.5 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3469.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4333.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,430.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4015.4 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1855.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2026.4 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6355.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6163.6 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8163.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8428.8 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4034.5 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,440.8 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,49.5 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1678331.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,203.7 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,221040.16 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,325776.34 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,590.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,775.5 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1239.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2019.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3300.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4213.6 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58444.6 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13332.7 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4087.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4514.2 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,499.5 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2745.9 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1857.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1793.8 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6284.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5954.8 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8235.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8069.9 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4330.2 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,295.7 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,32.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65290.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1156750.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1164673.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1152710.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,441115.94 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,647208.1 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,830131.1 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7923.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1010.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,172091.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,709458.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15034,10.28,Typically Developing Children,Male,133,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,527518.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,687.6 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1317.5 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1484145E7 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1358010.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1344409.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1345368.6 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21977.3 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,823.7 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,700.1 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,623.3 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,674.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,947.4 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,665.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1640994.2 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,244653.94 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,318377.7 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,638.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,624.7 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1321.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1548.7 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3556.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3559.8 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63494.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16027.5 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3643.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4180.7 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,352.1 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4550.1 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1607.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2222.6 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5122.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4902.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8824.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8155.3 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4296.7 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,260.6 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,18.4 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1761060.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,179.1 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,243333.8 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,318924.16 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,488.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,580.5 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1353.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1645.8 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3842.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3792.8 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64370.4 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14982.4 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4070.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4275.8 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,375.7 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5424.2 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1735.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1756.4 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5489.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5424.5 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8503.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7979.6 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4369.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,430.6 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,45.9 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61014.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1189149.6 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1200198.6 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1185237.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,487987.72 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,637301.9 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,827021.9 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11049.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,931.7 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,175899.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,710883.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15035,11.17,Typically Developing Children,Male,121,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,573195.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,548.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1480.2 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1485233E7 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1174919.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1165470.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1166220.9 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20605.6 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,888.3 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,707.3 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,681.6 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,516.8 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,915.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,704.5 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1430735.1 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,203628.11 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,272698.9 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,657.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,642.1 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1229.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1711.1 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3878.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3767.4 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62694.6 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14715.6 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3779.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4005.8 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,477.4 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2827.4 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1715.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1976.3 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5241.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5415.8 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8074.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7352.3 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4107.1 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,273.9 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.1 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1516633.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,112.3 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,203821.38 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,273477.53 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,504.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,659.2 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1286.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1685.3 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3993.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3945.8 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61005.1 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14839.6 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3780.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3915.2 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,300.6 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3013.7 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1706.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1946.6 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5287.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5447.1 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7974.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7007.9 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4334.4 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,442.3 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,26.8 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59537.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1015662.94 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1022529.94 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1012335.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,407449.47 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,546176.44 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,729774.44 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6867.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1021.6 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,163186.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,643792.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15036,12.77,Typically Developing Children,Female,109,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,494625.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,588.8 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1739.4 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1484184E7 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1300958.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1286273.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1287377.9 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22187.2 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1226.1 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,608.2 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,617.7 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,645.3 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1073.8 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,890.3 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1641578.4 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,234320.7 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,301216.56 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,725.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,693.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,839.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1772.6 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3983.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4055.2 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61983.7 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14439.6 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3803.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4336.2 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,340.6 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4755.9 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1814.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2160.2 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5424.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5729.1 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8778.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8821.4 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4195.9 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,338.5 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,22.1 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1687262.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,106.7 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,232198.75 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,299177.9 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,588.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,784.2 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,880.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1866.9 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4127.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4225.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64489.7 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14995.1 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3917.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4482.7 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,230.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5819.6 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1854.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2014.8 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4952.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5683.9 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8468.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8053.3 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4539.2 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,508.7 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,17.3 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65005.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1134296.9 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1145908.9 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1130763.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,466519.47 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,600394.44 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,792299.44 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11612.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1013.6 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,184115.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,701402.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15037,14.43,Typically Developing Children,Female,107,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,569081.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,625.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1574.2 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1483047E7 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1308121.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1291198.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1292257.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18047.3 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1069.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,640.2 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,495.8 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,684.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1140.3 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,854.6 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1643012.2 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,234051.53 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,298720.47 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,415.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,636.5 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1149.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1642.2 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3378.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,5396.4 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62489.6 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14317.4 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3442.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4462.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,165.9 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5999.4 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1869.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2385.5 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5758.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6430.9 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8841.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8173.6 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4193.3 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,457.9 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,23.5 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1691635.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,44.3 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,235894.02 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,301105.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,345.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,466.9 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1632.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1650.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3194.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5379.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64192.4 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13685.9 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4063.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4746.3 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,231.3 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6895.1 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1777.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2140.2 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6765.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5868.8 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8661.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8246.2 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4330.8 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,530.9 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,66.3 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67619.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1139899.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1153881.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1136363.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,469945.53 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,599825.44 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,794796.44 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13982.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,841.8 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,194906.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,717949.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15038,12.38,Typically Developing Children,Male,128,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,589956.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,665.8 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1441.6 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1485556E7 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1147705.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1136631.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1136957.1 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19250.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,731.2 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,554.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,555.8 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,371.4 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,768.6 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,751.3 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1466576.8 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,190373.62 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,269935.25 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,703.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,701.4 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,723.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1667.8 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4123.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4109.3 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58869.3 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15006.4 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4148.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3796.2 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,245.5 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3946.5 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1585.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2077.2 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5103.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5303.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8377.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8378.3 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4020.7 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,319.4 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,39.5 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1567031.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,126.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,191506.36 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,274481.9 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,487.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,749.1 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,675.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1614.8 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4160.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4118.6 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59993.7 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13921.6 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3881.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4065.5 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,215.9 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3632.6 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1688.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1987.6 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5005.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5369.6 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8122.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8458.1 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4066.3 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,260.7 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,23.7 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61850.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,991759.1 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1000089.1 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,987742.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,381879.97 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,544417.2 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,726735.2 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8330.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,415.5 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,173063.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,624944.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15039,14.25,Typically Developing Children,Female,86,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,472647.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,974.9 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2236.8 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1484985E7 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1293848.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1280071.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1281000.6 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20416.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,824.7 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,800.6 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,602.6 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,467.2 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,822.5 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1011.4 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1650389.9 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,234379.22 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,304022.44 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,382.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,608.3 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1240.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1688.1 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3355.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4414.8 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56147.5 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14074.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4036.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4028.8 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,295.3 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4222.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1887.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2106.1 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4846.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5093.1 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8557.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7331.5 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4198.2 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,503.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,25.9 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1733935.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,230.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,233215.97 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,306983.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,380.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,542.2 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1290.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1733.3 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4234.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4286.5 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59252.2 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13703.2 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4114.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4100.6 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,283.9 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4215.9 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1888.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1961.8 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4839.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5089.9 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8303.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7281.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4135.5 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,553.5 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.5 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59927.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1140574.6 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1150254.6 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1137455.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,467595.2 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,611005.44 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,786625.44 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9680.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1666.5 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,207901.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,659919.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15040,15,Typically Developing Children,Male,123,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,566375.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,774.4 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1749.9 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1483613E7 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1296727.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1272805.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1273392.6 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22711.4 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1052.3 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,462.4 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,557.1 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,630.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1048.6 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,701.4 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1659367.1 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,229847.89 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,286454.44 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,656.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,728.4 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1158.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1850.5 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4544.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4621.3 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,67224.5 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15829.6 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3834.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3977.5 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,417.5 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6928.2 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1925.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2156.5 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5824.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5932.4 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8329.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8089.7 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4174.3 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,456.7 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,35.1 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1738279.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,158.1 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,234230.86 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,288122.4 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,463.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,816.9 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1385.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1770.3 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3856.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4731.2 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,70569.6 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15763.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2823.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4005.5 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,295.9 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,12407.6 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1980.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1919.3 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6201.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6054.6 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7745.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7598.5 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4552.6 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,612.1 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,34.5 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64574.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1106677.6 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1127498.6 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1102557.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,464078.75 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,574576.9 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,778384.9 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,20821.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,728.5 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,198068.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,682743.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15041,14.73,Typically Developing Children,Male,115,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,553874.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,617.6 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1144.7 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1486568E7 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1111652.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1102057.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1102076.6 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18082.4 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,767.9 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,708.9 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,619.1 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,561.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1062.3 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,883.5 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1374668.8 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,188709.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,255402.6 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,649.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,739.7 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1128.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,2091.7 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3195.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2994.5 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58104.6 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,18818.7 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3776.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4038.5 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,182.4 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3881.9 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1658.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2055.3 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5317.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,3908.8 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7817.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7825.8 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4498.4 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,270.4 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.6 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1525952.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,127.4 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,186603.84 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,257345.19 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,583.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,651.9 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1347.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2177.5 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3310.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3131.3 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59809.6 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,18626.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3679.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4264.9 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,343.5 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2558.1 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1744.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1968.1 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5718.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,3784.6 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7847.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7523.9 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4424.6 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,324.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,2.4 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57328.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,949504.6 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,956642.6 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,945279.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,375312.84 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,512747.78 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,689674.75 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7138.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,812.3 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,152282.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,594198.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15042,13.66,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,461957.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,578.1 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1586.8 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1485484E7 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1250401.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1238233.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1239010.1 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21281.6 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,826.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,768.9 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,590.3 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,470.6 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,954.8 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,682.3 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1590723.1 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,224415.58 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,290981.88 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,456.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,576.9 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,898.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1625.4 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3866.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3735.9 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57668.7 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16392.6 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3627.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3630.6 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,277.2 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4694.9 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1659.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2794.2 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4919.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4732.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8496.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8902.8 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4622.7 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,342.7 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,29.6 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1645166.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,126.1 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,219919.14 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,292985.53 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,517.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,622.4 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1234.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1736.3 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4068.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4034.6 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58360.9 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14642.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3584.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3989.5 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,210.4 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3896.9 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1881.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2042.6 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5206.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5467.6 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8441.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8528.7 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4529.7 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,489.2 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,27.2 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63227.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1094231.1 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1103765.1 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1090705.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,444334.72 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,583967.44 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,764401.44 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9534.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,438.4 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,190400.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,660892.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15043,14.56,Typically Developing Children,Male,125,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,532255.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,801.6 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2529.3 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1485266E7 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1205957.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1193727.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1194565.5 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18803.7 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,763.3 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,621.1 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,507.5 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,472.5 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,737.9 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,759.4 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1504275.5 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,209926.27 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,290709.94 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,586.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,737.1 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,847.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1744.1 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4345.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4220.7 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53368.9 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12750.5 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3590.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3689.7 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,377.3 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4045.7 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1911.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2073.7 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5361.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5265.7 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8023.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7330.6 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4105.5 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,415.4 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,28.1 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1582055.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,207.4 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,208415.89 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,291119.47 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,526.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,746.1 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,933.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1531.7 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4398.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4459.4 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53938.9 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12495.2 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3653.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4093.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,309.3 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3153.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1845.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1934.6 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5239.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5252.7 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7813.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7886.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4317.6 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,372.1 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.8 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60950.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1064045.5 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1072313.5 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1060123.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,418342.16 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,581829.4 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,751870.4 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8268.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1188.7 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,181467.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,648326.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15044,10.35,Typically Developing Children,Male,97,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,502990.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1014.5 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2676.5 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1478376E7 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1629947.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1607767.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1607649.4 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22680.6 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,969.7 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,720.9 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,383.4 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,818.1 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,880.1 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1026.3 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1992662.4 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,266500.47 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,411885.62 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,625.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,888.2 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,942.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,2054.8 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3678.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,5238.6 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,73894.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14276.9 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3775.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4264.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,888.6 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,9816.6 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2189.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2236.2 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6503.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6653.5 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9192.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8660.5 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4357.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,511.1 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,24.9 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,2101653.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,206.6 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,268428.25 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,410858.03 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,615.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,772.9 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1270.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2335.5 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5468.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5526.7 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,74378.8 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14992.2 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4508.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4911.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,270.3 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6281.7 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1944.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2206.7 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6266.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6634.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8985.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8419.6 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4634.5 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,529.9 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,40.4 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,71215.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1434173.4 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1451707.4 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1428878.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,534928.75 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,822743.6 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,1044109.6 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,17534.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,3641.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,220863.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,878965.0 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,1.6 +,15045,13.18,Typically Developing Children,Male,107,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,643646.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,604.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2471.1 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1491747E7 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,898943.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,889271.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,889098.75 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17278.4 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,580.4 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,646.1 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,458.5 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,378.9 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,719.7 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,768.1 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1217584.6 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,138926.66 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,212479.47 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,363.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,453.8 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1259.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1188.2 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2971.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3006.6 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,50409.5 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13058.9 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3136.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3279.6 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,133.4 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2950.9 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1578.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1624.8 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4522.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4660.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7651.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6976.7 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3438.3 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,291.1 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,28.6 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1316965.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,180.5 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,142653.12 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,217211.5 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,389.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,459.1 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,954.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1283.3 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3442.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3186.9 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,51540.5 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12023.3 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2886.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3122.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,228.8 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2469.1 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1527.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1602.3 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4333.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4390.4 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7578.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6876.6 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3521.9 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,347.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,9.3 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,50508.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,764387.75 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,770365.75 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,761807.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,281579.78 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,429690.97 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,583039.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,5978.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1318.5 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,179282.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,589325.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15046,9.63,Typically Developing Children,Male,104,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,431474.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,681.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1068.4 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1488278E7 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1219410.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1209236.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1209628.8 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19840.2 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,610.6 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,566.7 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,497.9 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,332.5 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,763.5 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,813.3 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1496794.5 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,193596.33 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,302317.88 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,497.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,678.9 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,838.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1740.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3672.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3442.7 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62565.8 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14424.5 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3354.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4506.6 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,295.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3070.2 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1534.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2189.7 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4995.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4715.9 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8102.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7848.5 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3952.9 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,340.3 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,59.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1587287.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,156.8 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,195396.02 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,303476.47 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,512.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,678.7 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,627.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1782.2 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4023.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3506.7 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64322.8 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14043.7 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3662.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4207.3 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,503.8 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3388.7 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1640.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1647.8 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4883.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5275.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7719.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7451.3 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3939.5 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,421.1 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.1 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58858.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1056656.8 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1064387.8 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1053175.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,388992.34 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,605794.4 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,792857.4 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7731.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1141.7 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,187342.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,690236.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15047,13.07,Typically Developing Children,Male,126,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,491734.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,732.3 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1477.6 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1482236E7 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1169904.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1157745.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1158561.6 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18541.8 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,807.3 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,427.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,375.5 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,435.5 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,694.6 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,720.4 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1433185.6 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,194200.8 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,288729.3 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,632.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,569.8 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1315.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1507.8 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4496.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4407.4 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56140.6 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12688.3 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3743.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3978.3 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,252.2 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5308.2 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1685.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2109.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5291.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5554.1 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8369.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7535.5 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3741.7 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,463.1 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,11.9 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1520928.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,131.3 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,193168.77 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,285794.8 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,494.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,586.8 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1276.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1590.1 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4585.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4166.5 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55884.7 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12290.7 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3947.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4161.7 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,289.8 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3018.2 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1848.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1788.6 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5854.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5801.6 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8565.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7386.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3864.5 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,401.7 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,13.9 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59612.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1023669.7 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1033011.7 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1020580.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,387369.56 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,574524.1 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,746841.1 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9342.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1175.6 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,167304.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,669824.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15048,11.62,Typically Developing Children,Male,106,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,488443.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,770.9 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1974.8 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1481627E7 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1375701.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1358717.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1359827.8 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22689.9 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1129.4 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,541.9 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,509.3 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,534.2 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,812.3 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,925.2 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1726086.2 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,233722.08 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,334537.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,335.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,955.4 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1257.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1571.9 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4454.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4973.6 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62945.9 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14447.2 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3920.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4521.5 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,389.3 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6278.6 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1540.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2220.7 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5737.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5800.8 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9265.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8989.7 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4302.5 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,569.5 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,35.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1768222.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,265.8 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,233584.44 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,334686.2 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,167.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,828.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1301.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1563.2 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5040.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5326.1 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63432.5 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14262.1 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3783.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4353.9 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,347.6 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5486.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1735.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2180.4 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5080.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5585.8 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9095.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8652.2 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4429.8 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,648.6 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,38.4 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67742.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1207477.8 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1220911.8 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1202972.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,467306.53 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,669223.2 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,864533.2 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13434.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,835.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,205872.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,770900.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15049,9.98,Typically Developing Children,Male,139,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,571495.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,670.7 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,921.6 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1487524E7 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1206095.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1197647.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1198452.4 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18409.6 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,697.5 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,698.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,623.2 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,358.3 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,735.7 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,874.2 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1501739.8 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,192351.03 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,298471.4 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,581.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,699.7 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1173.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1613.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3121.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4088.2 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60096.1 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14457.4 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3205.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3910.4 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,332.6 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3029.7 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1645.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2027.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5642.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5546.2 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8582.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8505.7 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3881.1 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,313.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,26.7 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1573710.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,173.9 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,194271.67 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,300688.2 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,444.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,777.2 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1491.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1753.2 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2986.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4220.5 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61040.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13973.5 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3666.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4246.5 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,293.7 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2147.5 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1517.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1886.7 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5388.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5568.5 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7371.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8410.5 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4072.9 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,456.3 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,36.5 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62718.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1051403.4 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1057498.4 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1047593.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,386622.72 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,599159.6 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,784033.6 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6095.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1074.6 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,165989.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,680341.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15050,11.43,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,483122.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,687.4 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1623.7 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1485662E7 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1154654.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1140332.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1140585.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18177.9 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,904.3 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,492.7 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,539.2 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,557.2 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,835.1 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,838.5 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1475581.9 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,194574.36 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,273438.56 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,582.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,641.4 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1294.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1611.6 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3646.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3908.9 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62689.2 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12259.1 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3838.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3599.3 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,448.5 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5425.8 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1714.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1871.2 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4994.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5164.4 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8348.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8045.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4074.5 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,384.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,25.7 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1547874.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,206.8 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,190548.53 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,274681.53 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,498.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,591.3 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1231.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1410.3 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3770.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3899.4 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61410.4 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11101.2 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3803.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3785.8 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,306.8 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4927.8 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1651.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1775.2 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5119.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5258.2 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8186.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8159.6 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3832.9 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,416.4 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,17.2 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59373.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,995590.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1006876.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,992213.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,385122.88 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,548120.1 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,732894.1 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11286.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,861.5 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,195908.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,654654.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15051,8.16,Typically Developing Children,Male,89,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,486616.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,714.5 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1181.5 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1475206E7 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1364751.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1351477.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1352520.2 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,27457.5 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,892.4 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,585.6 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,578.1 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,639.9 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,863.3 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,767.9 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1773231.5 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,260760.3 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,290327.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,749.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,640.9 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1672.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1950.2 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4259.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4274.3 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,67193.4 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,19687.2 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4295.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4482.6 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,355.6 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4679.7 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2009.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2678.2 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,7092.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6898.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9774.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9683.6 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4896.1 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,482.6 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,32.4 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1819659.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,259.4 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,261337.14 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,290785.84 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,683.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,679.7 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1562.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1917.5 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4189.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4370.1 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,68654.1 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,19596.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4126.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,5088.1 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,315.6 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4833.6 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2201.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2516.3 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6976.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6749.2 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9543.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9921.7 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,5159.3 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,462.7 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.9 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,73188.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1179887.2 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1190680.2 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1175151.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,522097.44 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,581112.8 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,791794.8 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10793.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,633.6 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,212340.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,671833.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15052,21.83,Typically Developing Children,Male,127,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,637520.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,825.7 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1402.4 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1483386E7 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1150867.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1129367.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1130038.8 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20679.5 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,937.2 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,441.2 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,489.2 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,600.9 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,599.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,981.8 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1489183.5 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,199679.45 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,262114.25 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,703.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,597.4 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1252.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1426.2 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4000.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4224.3 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58939.8 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14391.4 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3698.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3906.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,375.9 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,9315.1 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1996.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2141.5 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5829.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5809.6 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7633.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7249.8 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4287.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,530.8 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,41.4 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1545207.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,136.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,197228.23 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,262275.78 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,574.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,664.1 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1631.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1541.1 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4364.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4209.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60247.8 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14178.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4105.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4025.1 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,342.4 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7592.8 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1902.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1985.6 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5682.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5981.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7581.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7302.3 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4276.9 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,542.9 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,41.2 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61282.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,984952.75 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1003332.75 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,981859.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,396907.7 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,524390.06 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,705526.06 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,18380.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,687.4 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,188169.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,615943.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15053,15.29,Typically Developing Children,Female,101,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,495436.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,589.9 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1543.8 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1484995E7 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1217763.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1208064.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1208449.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22422.3 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,835.5 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,789.9 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,696.1 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,619.8 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1114.7 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,679.2 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1519667.6 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,224468.56 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,278384.38 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,571.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,649.3 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1127.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1661.2 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3658.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3468.9 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57884.3 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15500.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3618.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3916.1 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,397.4 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2712.9 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1857.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2377.6 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5425.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5020.8 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8421.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8020.5 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4547.6 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,358.2 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,16.9 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1582972.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,170.8 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,220316.92 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,276315.1 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,403.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,679.5 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1178.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1709.3 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3786.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3614.3 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60408.3 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14722.7 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3585.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4085.2 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,304.4 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3297.7 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1846.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2002.2 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5603.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5386.4 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8263.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7676.6 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4419.9 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,410.4 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60717.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1062782.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1069807.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1059661.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,444785.5 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,554699.44 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,734302.44 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7025.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1027.9 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,185065.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,670903.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15054,13.47,Typically Developing Children,Female,117,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,536862.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,619.4 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1461.4 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1482952E7 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1319594.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1308048.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1309047.8 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20881.9 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,922.5 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,552.9 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,598.1 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,465.5 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,827.7 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,782.9 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1531198.9 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,212312.94 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,325927.88 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,620.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,715.2 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1008.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1854.1 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4144.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4244.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,68719.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16474.9 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3793.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3897.3 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,342.4 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4594.9 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1537.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2179.2 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5456.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5628.8 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8940.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8258.6 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3977.4 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,301.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,39.4 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1664985.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,243.2 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,211604.81 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,325067.16 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,563.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,697.7 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1228.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1929.6 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3787.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4403.8 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,69399.7 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15726.9 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4428.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4144.9 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,288.3 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3221.9 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1624.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1954.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5567.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5892.1 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8689.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8153.6 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4034.1 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,475.3 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,20.4 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63601.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1141509.8 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1150313.8 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1137362.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,423917.75 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,650995.06 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,853556.06 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8804.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,867.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,168019.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,741238.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15055,9.2,Typically Developing Children,Female,129,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,521038.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1513.6 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2736.6 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1480352E7 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1239397.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1219597.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1219298.1 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19981.3 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,862.8 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,372.4 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,378.5 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,488.2 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,657.2 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1090.6 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1670433.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,205414.89 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,295836.47 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,513.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,760.1 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1657.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1636.9 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4514.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4566.1 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59808.5 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11459.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4227.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4636.6 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,436.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6206.3 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1868.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2064.7 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5780.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6021.5 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8292.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8877.1 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4480.8 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,382.7 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,42.9 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1737522.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,234.2 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,205511.58 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,304440.22 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,634.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,750.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1552.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1755.5 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4622.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4893.9 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58537.4 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11380.5 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4422.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4367.7 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,265.1 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7222.5 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1867.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1827.2 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5855.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5883.6 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8181.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8538.7 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4209.8 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,620.1 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,59.4 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66964.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1080482.1 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1095090.1 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1078346.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,410926.47 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,600276.7 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,786390.7 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14608.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1053.4 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,250750.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,690210.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15056,10.97,Typically Developing Children,Male,118,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,524236.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1160.9 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1279.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.6724427E7 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1297697.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1283168.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1283191.2 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,24206.9 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,724.1 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,706.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,576.4 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,457.9 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1023.8 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1268.3 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1714452.4 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,248662.6 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,282848.2 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,562.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,459.5 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1612.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1610.3 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4071.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3994.9 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61671.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,17677.8 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4350.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4272.9 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,353.5 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5521.4 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1860.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2410.9 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5139.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5237.2 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9305.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8552.3 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4708.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,415.7 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,16.1 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1771224.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,230.3 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,246352.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,282896.47 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,359.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,478.5 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1481.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1816.4 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4036.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4035.9 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61359.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,16570.4 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4356.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4531.8 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,408.3 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4372.4 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1955.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2195.2 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5043.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5022.1 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8660.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8666.9 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4849.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,308.4 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.6 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64043.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1128246.2 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1139233.2 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1124628.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,495014.6 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,565744.6 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,754463.6 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10987.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,478.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,220834.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,648447.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15057,21.24,Typically Developing Children,Male,122,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,617952.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,820.3 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1499.8 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1485128E7 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1238883.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1223900.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1224400.2 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20343.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1004.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,652.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,602.3 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,615.2 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,933.4 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,975.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1540681.4 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,225132.47 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,281324.7 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,604.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,587.1 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1059.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1531.9 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3678.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3667.2 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59869.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15727.3 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3841.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4399.3 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,269.6 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4874.3 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1845.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1964.6 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5369.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5438.3 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9027.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8440.9 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4237.4 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,506.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,22.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1592466.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,208.9 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,222794.42 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,282731.72 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,423.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,523.1 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,835.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1516.1 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3791.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3768.1 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61205.9 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14487.2 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3623.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4759.7 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,538.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5408.1 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1776.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1904.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5153.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5300.5 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8184.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8016.6 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4387.5 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,482.9 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.8 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61789.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1075976.2 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1087719.2 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1073142.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,447926.9 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,564056.4 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,747343.4 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11743.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,587.6 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,185154.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,640059.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15058,14.08,Typically Developing Children,Female,115,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,538466.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,526.4 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1051.2 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1490609E7 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1078799.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1068414.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1069249.4 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17839.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,789.1 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,527.5 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,602.4 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,418.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,752.1 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,762.7 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1307374.8 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,170919.98 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,268780.16 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,635.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,599.3 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1004.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1450.9 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3379.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3552.8 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55238.2 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13146.2 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3057.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3183.5 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,305.8 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4519.9 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1341.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1664.4 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4646.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4817.3 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7603.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7192.4 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3477.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,257.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,27.6 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1376651.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,152.1 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,168916.02 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,270332.22 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,496.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,636.4 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1105.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1330.3 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3693.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3568.8 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55811.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12373.8 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3219.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3592.2 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,329.9 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2825.3 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1547.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1587.9 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4631.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4875.1 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7371.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7014.8 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3582.3 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,383.9 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.2 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,53428.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,935081.4 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,943272.4 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,931456.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,339836.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,539112.4 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,704560.4 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8191.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,528.2 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,154946.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,644563.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15059,9.05,Typically Developing Children,Female,103,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,420417.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,725.4 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1802.1 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.6727663E7 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1324721.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1314488.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1314758.1 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20608.4 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,670.4 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,765.4 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,580.6 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,375.2 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,727.2 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,743.7 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1538546.5 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,223911.69 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,330175.75 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,638.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,502.4 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1141.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1662.7 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3909.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3564.6 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58800.3 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15304.3 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3711.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3959.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,180.6 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3488.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1793.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2147.4 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5122.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5448.4 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8792.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7971.3 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4298.7 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,320.1 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1722876.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,200.9 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,220001.98 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,330718.72 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,601.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,577.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1311.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1709.8 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3208.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3903.3 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58600.6 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14502.9 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3761.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4323.8 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,318.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2890.1 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1767.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2019.5 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5210.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5493.7 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8589.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8099.1 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4259.3 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,258.2 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,11.4 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61230.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1170427.1 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1177474.1 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1165616.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,443913.7 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,660894.44 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,841777.44 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7047.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1338.1 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,203441.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,782797.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15060,9.76,Typically Developing Children,Male,137,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,598731.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,941.5 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1463.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1480053E7 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1347824.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1332084.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1333083.5 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,23737.5 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,871.3 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,625.9 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,513.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,579.4 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,979.5 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,985.9 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1629823.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,252584.38 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,297604.62 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,638.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,727.7 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1198.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1809.5 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4824.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4845.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,65683.6 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,17630.1 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3656.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4046.1 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,215.3 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5508.5 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2010.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2821.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6437.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6843.9 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8993.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8783.1 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4557.1 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,542.9 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,22.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1725630.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,235.9 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,250192.94 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,297340.6 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,590.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,605.4 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,997.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1867.2 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4192.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5200.2 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,65179.7 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,17109.1 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3635.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4092.1 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,220.2 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5632.4 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1858.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2494.6 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,7080.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6824.9 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8175.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8341.6 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4674.2 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,649.2 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,28.6 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,69865.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1170111.5 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1182585.5 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1166433.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,502777.3 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,594945.25 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,796524.25 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12474.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1217.3 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,207387.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,643659.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15061,12.04,Typically Developing Children,Male,98,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,594775.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1348.2 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1604.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1485497E7 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1170279.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1154726.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1155403.6 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18397.3 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,666.9 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,599.3 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,569.5 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,447.3 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,788.3 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,891.9 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1444468.6 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,187553.06 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,289507.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,619.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,702.6 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1276.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1431.7 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3674.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4045.8 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59540.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11180.8 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3877.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4033.1 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,269.5 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5008.2 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1687.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1854.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5289.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5264.3 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7965.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7490.8 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3921.6 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,421.1 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,16.5 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1557262.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,161.6 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,188947.05 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,288022.47 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,369.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,591.3 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1284.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1632.1 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4528.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4305.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60204.5 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10797.8 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4134.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4164.2 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,505.9 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5229.2 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1625.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1642.2 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5131.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5218.5 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7381.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7374.2 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4315.1 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,615.3 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,21.3 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59284.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1016675.56 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1028468.56 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1012525.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,376500.1 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,577529.5 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,757639.5 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11793.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,529.1 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,186990.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,656014.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,15062,12.88,Typically Developing Children,Male,108,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,450634.0 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,878.4 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1280.1 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1110194E7 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1138699.0 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1124652.0 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1124058.6 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17134.7 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1116.3 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,590.2 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,491.8 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,325.8 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,705.5 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1089.1 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1373759.0 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,180328.64 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,284395.34 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,585.2008 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,560.7 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,532.00073 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1349.4 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4541.956 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4525.7 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,50173.2 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12308.5 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3596.325 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3954.2 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,347.3 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5573.8 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1686.4424 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1806.3 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4760.0767 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5118.6 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7764.551 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7475.9 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3811.3 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,436.0 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,50.5 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1513725.0 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,122.7 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,181728.97 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,293178.62 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,525.3507 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,587.0 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,283.2904 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1635.7 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4418.266 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4518.6 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,50257.9 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12193.8 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3473.9648 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3755.7 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,341.9 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4272.1 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1647.8723 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1791.7 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5123.167 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5217.1 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7731.301 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7509.8 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3951.2 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,430.9 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.3 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59488.0 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1002220.56 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1013164.56 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,999632.0 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,362057.6 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,577573.94 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,737913.94 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10944.0 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,847.3 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,156676.88 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,701851.25 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1511464,10.12,ADHD-Inattentive,Male,108,104,110,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,421961.7 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1282.5 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1645.4 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1517240,10.06,ADHD-Combined,Male,125,117,125,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1101457E7 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1385367.0 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1372572.0 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1372276.0 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19147.1 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,793.9 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,748.1 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,674.2 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,496.5 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,895.5 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,859.5 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1617499.4 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,258471.94 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,310660.78 +,1517240,10.06,ADHD-Combined,Male,125,117,125,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,672.98096 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,780.5 +,1517240,10.06,ADHD-Combined,Male,125,117,125,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,907.0613 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1863.2 +,1517240,10.06,ADHD-Combined,Male,125,117,125,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4092.4155 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4139.7 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,65530.1 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16478.3 +,1517240,10.06,ADHD-Combined,Male,125,117,125,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4343.786 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4697.8 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,378.6 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4872.4 +,1517240,10.06,ADHD-Combined,Male,125,117,125,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2097.4128 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2410.7 +,1517240,10.06,ADHD-Combined,Male,125,117,125,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6684.5894 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6457.3 +,1517240,10.06,ADHD-Combined,Male,125,117,125,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8796.632 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7771.0 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4661.2 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,559.5 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,64.7 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1750625.0 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,119.2 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,261557.11 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,312093.2 +,1517240,10.06,ADHD-Combined,Male,125,117,125,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,450.8706 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,689.9 +,1517240,10.06,ADHD-Combined,Male,125,117,125,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,843.2212 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1813.5 +,1517240,10.06,ADHD-Combined,Male,125,117,125,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4494.076 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4441.7 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64905.3 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14876.3 +,1517240,10.06,ADHD-Combined,Male,125,117,125,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4315.856 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4839.0 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,318.0 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3398.6 +,1517240,10.06,ADHD-Combined,Male,125,117,125,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2257.0132 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2311.3 +,1517240,10.06,ADHD-Combined,Male,125,117,125,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6790.9893 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6594.4 +,1517240,10.06,ADHD-Combined,Male,125,117,125,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8659.642 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8004.7 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4342.1 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,528.2 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,44.0 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67817.0 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1214219.0 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1223446.0 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1210862.0 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,520029.06 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,622753.94 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,821713.94 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9227.0 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1870.6 +,1517240,10.06,ADHD-Combined,Male,125,117,125,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,175988.5 +,1517240,10.06,ADHD-Combined,Male,125,117,125,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,760407.25 +,1517240,10.06,ADHD-Combined,Male,125,117,125,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1517240,10.06,ADHD-Combined,Male,125,117,125,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,571078.9 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,666.5 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2135.9 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1535233,9.64,Typically Developing Children,Male,120,96,136,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1747622E7 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1141229.0 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1122019.0 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1122652.2 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18724.6 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,890.4 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,439.4 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,459.8 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,512.1 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,843.8 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,759.0 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1389827.8 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,186542.42 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,278448.56 +,1535233,9.64,Typically Developing Children,Male,120,96,136,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,612.0007 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,827.3 +,1535233,9.64,Typically Developing Children,Male,120,96,136,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1180.0012 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1406.4 +,1535233,9.64,Typically Developing Children,Male,120,96,136,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3928.0042 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3827.0 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58676.9 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12926.1 +,1535233,9.64,Typically Developing Children,Male,120,96,136,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3725.004 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3761.4 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,631.3 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7134.1 +,1535233,9.64,Typically Developing Children,Male,120,96,136,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1846.002 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1738.4 +,1535233,9.64,Typically Developing Children,Male,120,96,136,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5001.0054 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5529.8 +,1535233,9.64,Typically Developing Children,Male,120,96,136,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8037.009 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7617.9 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3418.4 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,433.5 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,42.2 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1460914.0 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,132.4 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,184515.5 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,273982.75 +,1535233,9.64,Typically Developing Children,Male,120,96,136,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,526.00055 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,712.5 +,1535233,9.64,Typically Developing Children,Male,120,96,136,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1506.0016 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1707.9 +,1535233,9.64,Typically Developing Children,Male,120,96,136,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4140.0044 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4129.7 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56135.3 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12059.8 +,1535233,9.64,Typically Developing Children,Male,120,96,136,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3660.004 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3900.1 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,627.3 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6709.5 +,1535233,9.64,Typically Developing Children,Male,120,96,136,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1827.002 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1562.1 +,1535233,9.64,Typically Developing Children,Male,120,96,136,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5273.006 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5201.2 +,1535233,9.64,Typically Developing Children,Male,120,96,136,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7610.0083 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7348.0 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3709.7 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,661.2 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,10.1 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58746.0 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,984104.25 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,999922.25 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,981509.0 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,371057.9 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,552431.3 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,727453.3 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15818.0 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2366.7 +,1535233,9.64,Typically Developing Children,Male,120,96,136,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,171078.19 +,1535233,9.64,Typically Developing Children,Male,120,96,136,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,642045.7 +,1535233,9.64,Typically Developing Children,Male,120,96,136,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1535233,9.64,Typically Developing Children,Male,120,96,136,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,449632.47 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,630.2 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1812.7 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1541812,8.45,ADHD-Combined,Female,122,135,106,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3064198E7 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1070357.0 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1059667.0 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1060113.6 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16812.9 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,839.6 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,713.7 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,618.9 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,550.0 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,933.5 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,690.8 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1295917.0 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,179230.12 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,262062.45 +,1541812,8.45,ADHD-Combined,Female,122,135,106,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,206.99803 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,695.5 +,1541812,8.45,ADHD-Combined,Female,122,135,106,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,585.99445 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1363.5 +,1541812,8.45,ADHD-Combined,Female,122,135,106,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3242.9692 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3106.9 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,50531.4 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11425.9 +,1541812,8.45,ADHD-Combined,Female,122,135,106,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2901.9724 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3835.1 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,308.9 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3512.4 +,1541812,8.45,ADHD-Combined,Female,122,135,106,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1624.9846 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1564.4 +,1541812,8.45,ADHD-Combined,Female,122,135,106,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5049.952 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5423.3 +,1541812,8.45,ADHD-Combined,Female,122,135,106,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7028.9336 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7017.1 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3867.2 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,347.2 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,12.1 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1368337.0 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,145.5 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,179351.55 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,261748.45 +,1541812,8.45,ADHD-Combined,Female,122,135,106,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,341.99677 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,643.6 +,1541812,8.45,ADHD-Combined,Female,122,135,106,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,911.99133 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1552.7 +,1541812,8.45,ADHD-Combined,Female,122,135,106,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3568.966 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3270.8 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,48228.6 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10177.4 +,1541812,8.45,ADHD-Combined,Female,122,135,106,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3402.9678 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3762.3 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,210.6 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3033.9 +,1541812,8.45,ADHD-Combined,Female,122,135,106,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1670.9841 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1596.3 +,1541812,8.45,ADHD-Combined,Female,122,135,106,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5290.9497 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5491.6 +,1541812,8.45,ADHD-Combined,Female,122,135,106,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7047.933 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7104.0 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3812.3 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,372.3 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,28.7 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56262.0 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,941269.56 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,948832.56 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,938096.0 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,358581.7 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,523810.9 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,680662.94 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7563.0 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1299.2 +,1541812,8.45,ADHD-Combined,Female,122,135,106,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,154988.55 +,1541812,8.45,ADHD-Combined,Female,122,135,106,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,558786.7 +,1541812,8.45,ADHD-Combined,Female,122,135,106,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1541812,8.45,ADHD-Combined,Female,122,135,106,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,416739.03 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1446.7 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2879.8 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,http://purl.org/nidash/fsl#,Background (mm^3),,,9327398.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1211545.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1193131.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1193800.6 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18195.2 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,663.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,671.1 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,456.2 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,386.2 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,694.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,977.8 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1497801.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,200527.11 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,297320.47 +,1562298,9.58,Typically Developing Children,Male,113,115,109,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,500.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,482.9 +,1562298,9.58,Typically Developing Children,Male,113,115,109,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,978.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1556.9 +,1562298,9.58,Typically Developing Children,Male,113,115,109,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3806.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3801.3 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59165.1 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13530.4 +,1562298,9.58,Typically Developing Children,Male,113,115,109,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3622.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4050.4 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,511.7 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5799.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1407.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1847.6 +,1562298,9.58,Typically Developing Children,Male,113,115,109,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4603.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4560.6 +,1562298,9.58,Typically Developing Children,Male,113,115,109,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7308.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7727.8 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3671.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,305.5 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,27.2 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1579474.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,175.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,200652.75 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,293961.28 +,1562298,9.58,Typically Developing Children,Male,113,115,109,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,473.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,553.7 +,1562298,9.58,Typically Developing Children,Male,113,115,109,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1120.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1522.7 +,1562298,9.58,Typically Developing Children,Male,113,115,109,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2934.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3901.7 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59706.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12368.7 +,1562298,9.58,Typically Developing Children,Male,113,115,109,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3867.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4143.5 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,574.7 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5825.3 +,1562298,9.58,Typically Developing Children,Male,113,115,109,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1591.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1591.8 +,1562298,9.58,Typically Developing Children,Male,113,115,109,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4930.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4958.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7111.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6967.5 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3879.1 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,490.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.1 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56562.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1051269.6 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1064512.6 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1048240.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,401179.88 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,591281.75 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,767375.75 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13243.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,645.7 +,1562298,9.58,Typically Developing Children,Male,113,115,109,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,220842.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,712009.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1562298,9.58,Typically Developing Children,Male,113,115,109,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,515377.0 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,664.7 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1058.7 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1567356,8.91,Typically Developing Children,Female,125,128,117,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1137165E7 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1031645.0 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1020727.0 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1020005.3 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,13147.5 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1110.5 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,579.4 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,618.2 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,467.4 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,787.3 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,786.8 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1029621.0 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,179142.45 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,270093.12 +,1567356,8.91,Typically Developing Children,Female,125,128,117,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,113.050156 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,504.7 +,1567356,8.91,Typically Developing Children,Female,125,128,117,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,296.5904 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1117.0 +,1567356,8.91,Typically Developing Children,Female,125,128,117,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2141.303 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3011.7 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,35866.6 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,7713.0 +,1567356,8.91,Typically Developing Children,Female,125,128,117,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,891.1012 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3424.4 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,210.9 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4314.5 +,1567356,8.91,Typically Developing Children,Female,125,128,117,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,803.3211 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1972.6 +,1567356,8.91,Typically Developing Children,Female,125,128,117,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,1376.5519 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,3940.1 +,1567356,8.91,Typically Developing Children,Female,125,128,117,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,3561.7449 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6548.0 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3273.9 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,424.3 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,2.4 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1408191.0 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,93.3 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,177259.39 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,262587.38 +,1567356,8.91,Typically Developing Children,Female,125,128,117,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,147.6302 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,563.9 +,1567356,8.91,Typically Developing Children,Female,125,128,117,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,432.2506 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1137.7 +,1567356,8.91,Typically Developing Children,Female,125,128,117,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2283.613 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3135.5 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,31584.5 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,6829.1 +,1567356,8.91,Typically Developing Children,Female,125,128,117,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,888.4412 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3237.7 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,571.0 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3098.0 +,1567356,8.91,Typically Developing Children,Female,125,128,117,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,786.03107 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1252.3 +,1567356,8.91,Typically Developing Children,Female,125,128,117,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,2306.2231 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4113.3 +,1567356,8.91,Typically Developing Children,Female,125,128,117,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,3670.8052 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6607.1 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3077.1 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,431.7 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,48725.0 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,940198.3 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,948786.3 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,938434.0 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,356401.84 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,532680.5 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,649687.5 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8588.0 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,807.1 +,1567356,8.91,Typically Developing Children,Female,125,128,117,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,163072.86 +,1567356,8.91,Typically Developing Children,Female,125,128,117,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,621190.6 +,1567356,8.91,Typically Developing Children,Female,125,128,117,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1567356,8.91,Typically Developing Children,Female,125,128,117,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,368950.5 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,736.5 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2245.9 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1577042,9.06,ADHD-Combined,Male,90,90,100,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3061962E7 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1129040.0 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1116687.0 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1117582.9 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19695.2 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,694.0 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,480.2 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,483.7 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,415.2 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,786.1 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,670.5 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1378473.2 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,185244.08 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,276213.9 +,1577042,9.06,ADHD-Combined,Male,90,90,100,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,440.00052 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,696.7 +,1577042,9.06,ADHD-Combined,Male,90,90,100,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1073.0012 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1446.1 +,1577042,9.06,ADHD-Combined,Male,90,90,100,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3652.0044 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3503.6 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55609.4 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13781.3 +,1577042,9.06,ADHD-Combined,Male,90,90,100,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3632.0044 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3551.0 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,621.3 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3623.2 +,1577042,9.06,ADHD-Combined,Male,90,90,100,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1614.002 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1638.4 +,1577042,9.06,ADHD-Combined,Male,90,90,100,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5075.006 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5414.5 +,1577042,9.06,ADHD-Combined,Male,90,90,100,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7617.0093 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6962.7 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3483.0 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,382.8 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,59.1 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1447598.0 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,130.0 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,184171.53 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,280589.38 +,1577042,9.06,ADHD-Combined,Male,90,90,100,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,315.00037 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,792.4 +,1577042,9.06,ADHD-Combined,Male,90,90,100,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,596.00073 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1426.6 +,1577042,9.06,ADHD-Combined,Male,90,90,100,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3453.0042 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3378.6 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53602.3 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12607.6 +,1577042,9.06,ADHD-Combined,Male,90,90,100,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3435.0042 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3419.3 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,520.3 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3641.6 +,1577042,9.06,ADHD-Combined,Male,90,90,100,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1648.002 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1260.1 +,1577042,9.06,ADHD-Combined,Male,90,90,100,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5015.006 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5302.9 +,1577042,9.06,ADHD-Combined,Male,90,90,100,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7689.0093 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6676.6 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3533.7 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,413.8 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,23.8 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,54262.0 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,983137.9 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,991950.9 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,979520.0 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,369415.6 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,556803.3 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,722628.3 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8813.0 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,828.2 +,1577042,9.06,ADHD-Combined,Male,90,90,100,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,177336.22 +,1577042,9.06,ADHD-Combined,Male,90,90,100,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,606732.7 +,1577042,9.06,ADHD-Combined,Male,90,90,100,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1577042,9.06,ADHD-Combined,Male,90,90,100,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,439281.5 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,669.9 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2031.5 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,2.0 +,1594156,12.87,Typically Developing Children,Male,108,104,124,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3055634E7 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1265618.0 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1254178.0 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1255121.9 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22191.8 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,785.4 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,687.6 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,526.2 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,563.5 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,994.9 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,749.8 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1500737.4 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,230439.39 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,290875.97 +,1594156,12.87,Typically Developing Children,Male,108,104,124,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,488.00128 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,736.6 +,1594156,12.87,Typically Developing Children,Male,108,104,124,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1292.0034 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1806.5 +,1594156,12.87,Typically Developing Children,Male,108,104,124,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4103.0107 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3629.7 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62469.0 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14081.3 +,1594156,12.87,Typically Developing Children,Male,108,104,124,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3664.0095 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3748.1 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,193.3 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2806.3 +,1594156,12.87,Typically Developing Children,Male,108,104,124,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1834.0048 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1952.9 +,1594156,12.87,Typically Developing Children,Male,108,104,124,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5175.0137 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5266.5 +,1594156,12.87,Typically Developing Children,Male,108,104,124,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9277.024 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8544.2 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4084.8 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,304.5 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.1 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1640720.0 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,195.5 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,230835.02 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,290698.56 +,1594156,12.87,Typically Developing Children,Male,108,104,124,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,425.00113 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,685.8 +,1594156,12.87,Typically Developing Children,Male,108,104,124,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1394.0037 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1786.5 +,1594156,12.87,Typically Developing Children,Male,108,104,124,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4200.011 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4413.8 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62209.4 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13692.9 +,1594156,12.87,Typically Developing Children,Male,108,104,124,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3746.0098 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3749.9 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,419.2 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4558.6 +,1594156,12.87,Typically Developing Children,Male,108,104,124,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1911.005 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1721.8 +,1594156,12.87,Typically Developing Children,Male,108,104,124,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5257.0137 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5167.4 +,1594156,12.87,Typically Developing Children,Male,108,104,124,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8834.023 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7881.2 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4202.7 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,443.6 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.3 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60808.0 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1104900.9 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1113095.9 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1102557.0 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,461274.4 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,581574.5 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,767107.5 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8195.0 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1219.9 +,1594156,12.87,Typically Developing Children,Male,108,104,124,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,203808.56 +,1594156,12.87,Typically Developing Children,Male,108,104,124,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,584510.56 +,1594156,12.87,Typically Developing Children,Male,108,104,124,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1594156,12.87,Typically Developing Children,Male,108,104,124,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,518005.38 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1103.2 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2460.8 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,http://purl.org/nidash/fsl#,Background (mm^3),,,9320952.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1283834.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1256074.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1256880.1 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22320.9 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,999.8 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,402.2 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,419.7 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,542.9 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,908.1 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1056.7 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1655765.9 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,209422.36 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,302978.47 +,16001,10.11,Typically Developing Children,Male,106,131,88,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,587.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,574.1 +,16001,10.11,Typically Developing Children,Male,106,131,88,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,923.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1703.2 +,16001,10.11,Typically Developing Children,Male,106,131,88,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4029.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4328.4 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,69715.3 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15001.4 +,16001,10.11,Typically Developing Children,Male,106,131,88,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3535.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4613.2 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,782.6 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,11748.7 +,16001,10.11,Typically Developing Children,Male,106,131,88,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2032.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2190.1 +,16001,10.11,Typically Developing Children,Male,106,131,88,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4825.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4943.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8590.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8705.6 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4732.6 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,485.4 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,13.6 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1690953.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,177.7 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,205756.48 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,298490.84 +,16001,10.11,Typically Developing Children,Male,106,131,88,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,352.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,604.8 +,16001,10.11,Typically Developing Children,Male,106,131,88,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1273.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2017.6 +,16001,10.11,Typically Developing Children,Male,106,131,88,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4235.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4535.6 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,73960.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13856.7 +,16001,10.11,Typically Developing Children,Male,106,131,88,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4622.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4847.3 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,642.1 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,9171.7 +,16001,10.11,Typically Developing Children,Male,106,131,88,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2051.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2036.8 +,16001,10.11,Typically Developing Children,Male,106,131,88,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5128.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5050.3 +,16001,10.11,Typically Developing Children,Male,106,131,88,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8514.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8891.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4413.1 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,565.2 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,10.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66220.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1086574.1 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1109687.1 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1081903.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,415178.84 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,601469.3 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,813585.3 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,23113.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1165.9 +,16001,10.11,Typically Developing Children,Male,106,131,88,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,231923.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,741858.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16001,10.11,Typically Developing Children,Male,106,131,88,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,523406.0 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,681.5 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1374.0 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9320780.0 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1142279.0 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1131555.0 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1132178.6 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20298.8 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,579.3 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,433.3 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,348.1 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,401.8 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,708.9 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,911.2 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1464935.1 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,191657.7 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,268876.06 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,579.0004 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,722.0 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,851.0006 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1598.0 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4394.003 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4486.8 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59552.8 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14249.9 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3936.003 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4608.3 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,270.8 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3662.2 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1795.0013 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2738.8 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5805.0044 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5815.5 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7661.0054 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7929.5 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4382.0 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,395.7 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,16.4 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1515635.0 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,162.6 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,190121.02 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,267636.88 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,435.0003 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,675.0 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,889.0006 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1857.0 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4769.0034 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4570.7 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60521.0 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12967.0 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3957.003 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4589.3 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,151.7 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3474.5 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1828.0013 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2199.9 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6260.0044 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6352.0 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7716.0054 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8108.5 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4156.6 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,454.9 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,30.6 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66478.0 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,986721.7 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,994615.7 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,984019.0 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,381778.72 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,536512.94 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,723973.94 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7894.0 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1295.3 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,209671.16 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,665169.5 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16002,10.16,Typically Developing Children,Female,120,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,481824.38 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,799.2 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1748.7 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9322400.0 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1324187.0 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1311346.0 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1311666.4 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22217.7 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,809.3 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,770.4 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,832.4 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,690.1 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1099.1 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,805.1 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1616452.1 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,241282.88 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,306690.12 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,632.9999 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,620.7 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1293.9996 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1878.0 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3479.9993 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3788.0 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63052.1 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15318.5 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3521.9993 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3996.1 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,346.5 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3791.3 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1823.9995 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1977.8 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5379.9985 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5762.6 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9178.998 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8979.9 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4477.0 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,346.3 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,22.5 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1743691.0 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,150.7 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,238615.36 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,304661.03 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,422.9999 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,661.0 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,818.9998 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1805.5 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3525.9993 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3827.7 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63935.2 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13758.2 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3421.9993 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4119.1 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,215.2 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4770.8 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1852.9995 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1880.9 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5254.9985 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5590.1 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8635.998 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8657.2 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4455.7 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,460.1 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,27.9 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64312.0 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1158012.4 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1167594.4 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1155128.0 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,479898.22 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,611351.1 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,803430.1 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9582.0 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,926.5 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,199547.94 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,755226.9 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16003,10.46,Typically Developing Children,Male,114,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,571365.9 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,853.5 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,3052.8 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16004,10.49,Typically Developing Children,Male,104,105,95,http://purl.org/nidash/fsl#,Background (mm^3),,,9324948.0 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1211595.0 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1191144.0 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1191837.6 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20166.7 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,776.8 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,391.7 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,441.2 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,521.4 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,693.8 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1086.1 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1560270.5 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,199384.75 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,284358.47 +,16004,10.49,Typically Developing Children,Male,104,105,95,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,431.0002 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,575.2 +,16004,10.49,Typically Developing Children,Male,104,105,95,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,950.0004 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1515.1 +,16004,10.49,Typically Developing Children,Male,104,105,95,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3698.0017 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3623.8 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63529.9 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14546.7 +,16004,10.49,Typically Developing Children,Male,104,105,95,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3647.0017 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3688.6 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,425.9 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6886.3 +,16004,10.49,Typically Developing Children,Male,104,105,95,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1636.0007 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1937.8 +,16004,10.49,Typically Developing Children,Male,104,105,95,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4483.002 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4967.5 +,16004,10.49,Typically Developing Children,Male,104,105,95,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8648.004 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8329.5 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4138.3 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,478.0 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,23.7 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1568545.0 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,210.8 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,200429.84 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,291302.62 +,16004,10.49,Typically Developing Children,Male,104,105,95,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,396.00018 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,506.6 +,16004,10.49,Typically Developing Children,Male,104,105,95,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,906.0004 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1716.7 +,16004,10.49,Typically Developing Children,Male,104,105,95,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3646.0017 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3953.4 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,65476.3 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13411.9 +,16004,10.49,Typically Developing Children,Male,104,105,95,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3550.0017 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3706.8 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,375.7 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7123.0 +,16004,10.49,Typically Developing Children,Male,104,105,95,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1639.0007 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1795.6 +,16004,10.49,Typically Developing Children,Male,104,105,95,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4557.002 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4718.9 +,16004,10.49,Typically Developing Children,Male,104,105,95,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8517.004 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8146.5 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3986.9 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,681.8 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.4 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59160.0 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1037639.7 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1053197.6 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1033820.0 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,399814.6 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,575661.06 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,765064.06 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15558.0 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1213.0 +,16004,10.49,Typically Developing Children,Male,104,105,95,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,205403.11 +,16004,10.49,Typically Developing Children,Male,104,105,95,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,733358.3 +,16004,10.49,Typically Developing Children,Male,104,105,95,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16004,10.49,Typically Developing Children,Male,104,105,95,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,491427.25 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,521.6 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2105.9 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16005,10.57,Typically Developing Children,Female,128,127,141,http://purl.org/nidash/fsl#,Background (mm^3),,,9327002.0 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1087856.0 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1077532.0 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1077880.2 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17811.6 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,750.0 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,536.0 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,500.2 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,409.6 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,724.1 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,534.4 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1362623.1 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,179811.97 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,270618.72 +,16005,10.57,Typically Developing Children,Female,128,127,141,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,557.00006 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,496.4 +,16005,10.57,Typically Developing Children,Female,128,127,141,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1114.0001 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1566.4 +,16005,10.57,Typically Developing Children,Female,128,127,141,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3690.0005 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3573.3 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,49966.8 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12254.5 +,16005,10.57,Typically Developing Children,Female,128,127,141,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3381.0005 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3515.5 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,219.5 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3152.9 +,16005,10.57,Typically Developing Children,Female,128,127,141,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1577.0002 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1947.4 +,16005,10.57,Typically Developing Children,Female,128,127,141,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5053.0005 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4948.7 +,16005,10.57,Typically Developing Children,Female,128,127,141,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7327.001 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7137.1 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3519.7 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,326.6 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,15.4 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1406320.0 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,85.0 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,178931.34 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,268743.22 +,16005,10.57,Typically Developing Children,Female,128,127,141,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,453.00006 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,598.5 +,16005,10.57,Typically Developing Children,Female,128,127,141,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,742.00006 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1642.5 +,16005,10.57,Typically Developing Children,Female,128,127,141,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3703.0005 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3663.4 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,51562.1 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11497.1 +,16005,10.57,Typically Developing Children,Female,128,127,141,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3323.0005 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3480.0 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,316.4 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3099.9 +,16005,10.57,Typically Developing Children,Female,128,127,141,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1573.0002 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1643.8 +,16005,10.57,Typically Developing Children,Female,128,127,141,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4975.0005 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4968.8 +,16005,10.57,Typically Developing Children,Female,128,127,141,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7179.001 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6792.1 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3529.1 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,414.3 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,13.5 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,54588.0 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,954858.25 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,962082.25 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,952277.0 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,358743.3 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,539361.94 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,696324.94 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7224.0 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,878.5 +,16005,10.57,Typically Developing Children,Female,128,127,141,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,159939.03 +,16005,10.57,Typically Developing Children,Female,128,127,141,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,648335.1 +,16005,10.57,Typically Developing Children,Female,128,127,141,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16005,10.57,Typically Developing Children,Female,128,127,141,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,439350.06 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,675.6 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1702.8 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9324536.0 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1198496.0 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1178118.0 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1178634.8 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19323.6 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,879.2 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,464.3 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,450.8 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,475.0 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,907.9 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,680.2 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1531166.6 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,207246.97 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,275816.53 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,636.9999 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,697.0 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1235.9998 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1647.2 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3952.999 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4389.2 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59213.2 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13985.8 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3130.9993 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3437.0 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,475.3 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7776.6 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1713.9996 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2220.8 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5451.9985 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5732.8 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8111.998 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7779.2 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4214.8 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,329.6 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,35.0 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1590687.0 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,149.6 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,209989.55 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,277468.78 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,129.99997 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,851.9 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1230.9998 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1503.2 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4171.999 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4419.6 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60459.1 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12713.8 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2848.9993 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3370.5 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,231.9 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,9336.7 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1753.9996 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2087.6 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5075.999 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5408.6 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7662.998 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7677.2 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3955.0 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,381.0 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,28.3 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61310.0 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1034222.8 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1051588.8 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1031200.0 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,417236.5 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,553285.3 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,735318.3 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,17366.0 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,865.3 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,197672.94 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,693996.9 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16006,10.76,Typically Developing Children,Male,78,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,490806.88 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1113.5 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1733.2 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9324511.0 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1129144.0 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1112512.0 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1112902.4 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18569.1 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,750.7 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,574.1 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,486.2 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,504.0 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,759.7 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,987.4 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1530526.8 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,181494.06 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,264277.7 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,326.99982 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,432.4 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1247.9993 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1252.6 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4353.9976 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4258.6 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63546.4 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13736.2 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3857.9978 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4070.9 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,445.7 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5783.8 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1548.999 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1895.0 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4966.997 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5384.9 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7747.9956 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7832.5 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3987.5 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,402.4 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,39.0 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1500866.0 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,156.0 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,181664.6 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,269762.06 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,404.99976 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,501.2 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1165.9993 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1424.0 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3998.9976 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4347.7 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64599.3 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13607.8 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3690.9978 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4218.1 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,210.8 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5718.0 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1504.9991 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1837.4 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4912.997 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5234.0 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7400.9956 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7921.6 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3618.1 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,476.5 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,6.2 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60343.0 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,959527.44 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,972422.44 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,957039.0 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,363158.66 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,534039.75 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,723245.75 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12895.0 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,827.7 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,198916.88 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,680442.56 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16007,10.93,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,466720.72 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,987.2 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1854.6 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9315679.0 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1416365.0 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1388141.0 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1388817.6 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21985.5 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1112.2 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,559.8 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,488.9 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,622.4 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1009.0 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1050.1 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1772019.1 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,236113.9 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,343150.78 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,586.0003 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,801.1 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1296.0006 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1744.1 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4886.0024 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4879.5 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62889.3 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14234.0 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4361.002 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4604.1 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,553.6 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,10844.5 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1902.0009 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2052.9 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5864.003 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6166.2 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9374.005 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8717.3 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4540.4 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,775.2 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,28.1 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1832533.0 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,182.9 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,239345.8 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,345660.16 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,449.0002 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,883.4 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1102.0005 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1965.0 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4838.0024 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4963.8 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63926.2 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14077.1 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4509.002 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4688.1 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,360.6 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,11341.3 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1916.0009 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2160.0 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5748.003 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5844.9 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9142.004 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8824.4 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4435.5 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,752.1 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,53.2 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,69177.0 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1236103.6 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1260524.6 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1232680.0 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,475459.7 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,688810.94 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,885983.94 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,24421.0 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,636.1 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,240409.12 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,842037.4 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16008,11.03,Typically Developing Children,Male,130,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,574920.25 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,486.3 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1046.7 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16009,11.12,Typically Developing Children,Male,109,109,112,http://purl.org/nidash/fsl#,Background (mm^3),,,9318391.0 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1232433.0 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1223136.0 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1223536.5 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21756.9 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,841.8 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,659.8 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,502.4 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,499.9 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,912.1 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,599.1 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1484956.8 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,214274.81 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,288428.16 +,16009,11.12,Typically Developing Children,Male,109,109,112,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,698.0002 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,684.3 +,16009,11.12,Typically Developing Children,Male,109,109,112,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1416.0004 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1718.4 +,16009,11.12,Typically Developing Children,Male,109,109,112,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4181.001 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3880.3 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62816.4 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13765.5 +,16009,11.12,Typically Developing Children,Male,109,109,112,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3913.001 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4177.1 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,457.8 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3072.5 +,16009,11.12,Typically Developing Children,Male,109,109,112,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1849.0005 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2240.9 +,16009,11.12,Typically Developing Children,Male,109,109,112,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6215.0015 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6312.1 +,16009,11.12,Typically Developing Children,Male,109,109,112,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8760.002 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8908.7 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4289.2 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,279.3 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.5 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1622268.0 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,144.2 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,211952.69 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,289148.9 +,16009,11.12,Typically Developing Children,Male,109,109,112,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,598.0001 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,673.9 +,16009,11.12,Typically Developing Children,Male,109,109,112,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1159.0002 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1982.7 +,16009,11.12,Typically Developing Children,Male,109,109,112,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4226.001 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4226.2 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63726.3 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14300.0 +,16009,11.12,Typically Developing Children,Male,109,109,112,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3903.001 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4048.6 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,410.4 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3245.8 +,16009,11.12,Typically Developing Children,Male,109,109,112,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1950.0005 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2280.1 +,16009,11.12,Typically Developing Children,Male,109,109,112,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6140.0015 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5907.8 +,16009,11.12,Typically Developing Children,Male,109,109,112,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8251.002 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8453.1 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4115.1 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,310.4 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,41.4 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65505.0 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1071135.5 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1078416.5 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1068819.0 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,426227.5 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,577577.06 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,770213.06 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7281.0 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,739.9 +,16009,11.12,Typically Developing Children,Male,109,109,112,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,202107.06 +,16009,11.12,Typically Developing Children,Male,109,109,112,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,710603.1 +,16009,11.12,Typically Developing Children,Male,109,109,112,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16009,11.12,Typically Developing Children,Male,109,109,112,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,532458.1 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,568.5 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1593.8 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16010,11.24,Typically Developing Children,Male,123,131,118,http://purl.org/nidash/fsl#,Background (mm^3),,,9318256.0 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1349667.0 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1340088.0 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1341156.8 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20973.4 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,680.8 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,583.4 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,447.9 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,479.0 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,771.6 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,609.9 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1670012.4 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,233245.16 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,330730.22 +,16010,11.24,Typically Developing Children,Male,123,131,118,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,510.99994 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,683.0 +,16010,11.24,Typically Developing Children,Male,123,131,118,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1349.9999 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1861.8 +,16010,11.24,Typically Developing Children,Male,123,131,118,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4449.9995 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4960.8 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59374.1 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13650.1 +,16010,11.24,Typically Developing Children,Male,123,131,118,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4078.9995 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4423.9 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,340.6 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2813.5 +,16010,11.24,Typically Developing Children,Male,123,131,118,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1864.9998 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2297.9 +,16010,11.24,Typically Developing Children,Male,123,131,118,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6044.9995 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6250.9 +,16010,11.24,Typically Developing Children,Male,123,131,118,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8280.999 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9725.3 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4793.0 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,413.4 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,30.9 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1761099.0 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,111.9 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,233466.44 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,325847.97 +,16010,11.24,Typically Developing Children,Male,123,131,118,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,465.99994 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,633.9 +,16010,11.24,Typically Developing Children,Male,123,131,118,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1264.9999 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1967.2 +,16010,11.24,Typically Developing Children,Male,123,131,118,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4871.9995 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4867.2 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61778.8 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12562.8 +,16010,11.24,Typically Developing Children,Male,123,131,118,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3942.9995 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4284.8 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,507.6 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2902.4 +,16010,11.24,Typically Developing Children,Male,123,131,118,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1845.9998 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2043.1 +,16010,11.24,Typically Developing Children,Male,123,131,118,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6261.999 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6288.1 +,16010,11.24,Typically Developing Children,Male,123,131,118,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8155.999 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8992.2 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4617.7 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,322.2 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.9 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,70266.0 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1195766.8 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1202670.8 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1192408.0 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,466711.6 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,656578.2 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,849232.2 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6904.0 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1363.8 +,16010,11.24,Typically Developing Children,Male,123,131,118,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,183030.97 +,16010,11.24,Typically Developing Children,Male,123,131,118,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,764516.9 +,16010,11.24,Typically Developing Children,Male,123,131,118,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16010,11.24,Typically Developing Children,Male,123,131,118,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,557083.9 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,904.2 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1905.1 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9329067.0 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1123364.0 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1106199.0 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1106578.6 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18603.7 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,713.9 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,476.2 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,291.8 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,458.3 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,719.1 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,849.5 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1506646.1 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,184848.0 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,277113.3 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,588.0003 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,542.1 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,895.0004 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1148.7 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3564.0017 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3577.8 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55552.8 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13683.7 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2580.0012 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3509.1 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,334.6 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5962.1 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1518.0007 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1794.3 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4891.0024 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5079.6 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7365.0034 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7309.8 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3578.0 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,367.6 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,22.3 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1497790.0 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,121.3 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,180493.69 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,272397.7 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,439.0002 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,502.7 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,979.0005 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1404.3 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3574.0017 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3564.4 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54903.6 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11916.8 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2992.0015 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3897.2 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,191.2 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6567.5 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1580.0007 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1790.9 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4426.002 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5187.4 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7194.0034 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7121.4 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3558.4 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,386.2 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,10.1 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55339.0 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,972701.7 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,986243.7 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,969719.0 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,365341.7 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,549511.0 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,716440.0 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13542.0 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1034.6 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,205892.1 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,694519.4 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16011,11.28,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,449280.2 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,765.5 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1435.6 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16012,11.41,Typically Developing Children,Male,109,118,105,http://purl.org/nidash/fsl#,Background (mm^3),,,9324900.0 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1157533.0 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1148872.0 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1149385.8 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19292.6 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,708.0 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,729.2 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,669.0 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,415.7 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,839.4 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,673.8 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1424299.2 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,203135.06 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,277900.34 +,16012,11.41,Typically Developing Children,Male,109,118,105,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,390.99982 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,536.7 +,16012,11.41,Typically Developing Children,Male,109,118,105,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,704.99963 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1711.1 +,16012,11.41,Typically Developing Children,Male,109,118,105,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3473.9983 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3374.8 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53202.6 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11358.7 +,16012,11.41,Typically Developing Children,Male,109,118,105,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3713.9983 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4052.1 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,317.2 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2712.4 +,16012,11.41,Typically Developing Children,Male,109,118,105,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1690.9991 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2116.5 +,16012,11.41,Typically Developing Children,Male,109,118,105,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5593.9976 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5877.3 +,16012,11.41,Typically Developing Children,Male,109,118,105,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7873.996 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7433.2 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3963.2 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,252.5 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,35.2 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1532757.0 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,91.3 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,199365.48 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,281909.78 +,16012,11.41,Typically Developing Children,Male,109,118,105,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,290.99985 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,595.1 +,16012,11.41,Typically Developing Children,Male,109,118,105,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,830.99963 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1922.8 +,16012,11.41,Typically Developing Children,Male,109,118,105,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3432.9983 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3479.1 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,52064.5 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10690.5 +,16012,11.41,Typically Developing Children,Male,109,118,105,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3720.9983 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3982.7 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,453.0 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2020.0 +,16012,11.41,Typically Developing Children,Male,109,118,105,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1772.9991 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1834.0 +,16012,11.41,Typically Developing Children,Male,109,118,105,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5632.997 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5881.0 +,16012,11.41,Typically Developing Children,Male,109,118,105,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7618.9966 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7617.8 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3991.2 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,231.9 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.5 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59912.0 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1024254.7 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1029966.7 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1021643.0 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,402500.53 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,559810.1 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,725646.1 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,5712.0 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,939.8 +,16012,11.41,Typically Developing Children,Male,109,118,105,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,180219.9 +,16012,11.41,Typically Developing Children,Male,109,118,105,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,689836.6 +,16012,11.41,Typically Developing Children,Male,109,118,105,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16012,11.41,Typically Developing Children,Male,109,118,105,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,478585.75 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,781.3 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2182.2 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16013,11.53,Typically Developing Children,Male,113,126,88,http://purl.org/nidash/fsl#,Background (mm^3),,,9316718.0 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1483207.0 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1454519.0 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1455484.2 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21234.9 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,978.1 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,485.8 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,477.5 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,586.2 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1132.5 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1134.4 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1850655.0 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,259408.14 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,350518.34 +,16013,11.53,Typically Developing Children,Male,113,126,88,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,487.99982 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,776.5 +,16013,11.53,Typically Developing Children,Male,113,126,88,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1246.9995 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1930.5 +,16013,11.53,Typically Developing Children,Male,113,126,88,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4460.9985 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4579.2 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,68001.5 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15679.8 +,16013,11.53,Typically Developing Children,Male,113,126,88,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3971.9985 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4581.2 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,377.0 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8442.1 +,16013,11.53,Typically Developing Children,Male,113,126,88,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1909.9993 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2242.8 +,16013,11.53,Typically Developing Children,Male,113,126,88,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5846.998 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5995.4 +,16013,11.53,Typically Developing Children,Male,113,126,88,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9621.996 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9764.9 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4375.7 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,459.5 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,22.8 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1906425.0 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,185.4 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,257886.11 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,348508.6 +,16013,11.53,Typically Developing Children,Male,113,126,88,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,430.99985 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,712.9 +,16013,11.53,Typically Developing Children,Male,113,126,88,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1437.9995 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2045.9 +,16013,11.53,Typically Developing Children,Male,113,126,88,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4529.9985 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4961.6 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,70952.2 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14424.9 +,16013,11.53,Typically Developing Children,Male,113,126,88,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3507.9988 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4408.9 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,336.6 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,14543.2 +,16013,11.53,Typically Developing Children,Male,113,126,88,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1988.9993 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2026.1 +,16013,11.53,Typically Developing Children,Male,113,126,88,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6437.9976 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6159.9 +,16013,11.53,Typically Developing Children,Male,113,126,88,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9045.997 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9473.6 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4385.3 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,542.9 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.2 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,70243.0 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1288990.2 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1313621.2 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1285456.0 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,517294.25 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,699026.94 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,908992.94 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,24631.0 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,897.7 +,16013,11.53,Typically Developing Children,Male,113,126,88,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,234895.9 +,16013,11.53,Typically Developing Children,Male,113,126,88,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,823417.75 +,16013,11.53,Typically Developing Children,Male,113,126,88,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16013,11.53,Typically Developing Children,Male,113,126,88,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,609486.75 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,680.4 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1504.4 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9322059.0 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1343854.0 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1318563.0 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1319417.1 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22537.8 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1029.8 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,410.9 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,463.4 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,494.1 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1021.8 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,739.5 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1683873.2 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,228010.67 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,315502.3 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,398.9999 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,580.3 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1171.9998 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1650.3 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4230.999 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4270.9 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,71492.5 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16277.8 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3424.9993 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4356.9 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,255.0 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,10864.3 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1626.9996 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2199.8 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4585.999 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5479.1 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8834.998 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8915.0 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4243.9 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,489.0 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,62.3 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1732302.0 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,157.7 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,223909.16 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,313008.94 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,363.9999 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,520.0 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,856.9998 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1835.7 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4231.999 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4419.8 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,70349.3 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15500.4 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4174.999 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4294.3 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,377.2 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,10014.7 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2056.9995 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2062.1 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5423.9985 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5583.3 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8202.998 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9218.1 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4346.7 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,486.3 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,23.4 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65559.0 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1148553.1 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1171018.1 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1145047.0 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,451919.84 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,628511.25 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,836284.25 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,22465.0 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,487.0 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,187651.97 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,775359.9 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16014,11.69,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,552205.9 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1297.3 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2169.2 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9317484.0 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1319810.0 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1295657.0 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1295875.5 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19604.6 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1008.5 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,509.3 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,523.8 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,434.9 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,808.1 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1082.5 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1717387.2 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,229116.08 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,315642.34 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,510.99988 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,525.7 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1392.9996 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1649.0 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4097.999 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4304.1 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61664.7 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13258.8 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4018.999 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3955.0 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,419.4 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,10443.4 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1726.9996 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1903.8 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5951.9985 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6295.1 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9040.998 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8131.8 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4347.5 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,505.3 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,13.0 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1750302.0 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,149.0 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,223218.92 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,311601.2 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,425.9999 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,601.4 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1413.9996 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2116.5 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4380.999 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4480.9 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64282.9 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13089.2 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4490.999 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4349.3 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,327.0 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7583.9 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2019.9995 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1965.9 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5966.9985 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6015.7 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8721.998 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7860.9 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4408.5 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,705.8 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.5 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64674.0 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1146323.5 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1165940.5 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1143914.0 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,452335.0 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,627243.56 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,818178.56 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,19617.0 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,733.5 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,247001.94 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,749169.8 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16015,11.7,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,542901.8 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,768.6 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1625.4 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16016,11.71,Typically Developing Children,Male,108,119,113,http://purl.org/nidash/fsl#,Background (mm^3),,,9317757.0 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1274626.0 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1260094.0 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1260500.8 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22671.8 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,781.3 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,402.7 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,378.0 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,486.4 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,614.6 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,868.3 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1625267.8 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,193990.95 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,316974.72 +,16016,11.71,Typically Developing Children,Male,108,119,113,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,644.99994 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,749.2 +,16016,11.71,Typically Developing Children,Male,108,119,113,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1262.9999 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1748.1 +,16016,11.71,Typically Developing Children,Male,108,119,113,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3895.9995 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4050.2 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,70740.3 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,18386.3 +,16016,11.71,Typically Developing Children,Male,108,119,113,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4105.9995 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4878.4 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,417.8 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6530.8 +,16016,11.71,Typically Developing Children,Male,108,119,113,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1760.9998 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2166.9 +,16016,11.71,Typically Developing Children,Male,108,119,113,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5627.9995 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5545.9 +,16016,11.71,Typically Developing Children,Male,108,119,113,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8857.999 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8556.6 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,5094.1 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,422.0 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,31.0 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1728414.0 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,151.3 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,189887.03 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,313441.03 +,16016,11.71,Typically Developing Children,Male,108,119,113,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,500.99994 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,747.0 +,16016,11.71,Typically Developing Children,Male,108,119,113,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1164.9999 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2115.0 +,16016,11.71,Typically Developing Children,Male,108,119,113,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4278.9995 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4157.1 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,72112.8 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15465.3 +,16016,11.71,Typically Developing Children,Male,108,119,113,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4863.9995 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,5403.5 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,589.6 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3429.2 +,16016,11.71,Typically Developing Children,Male,108,119,113,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1978.9998 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2051.0 +,16016,11.71,Typically Developing Children,Male,108,119,113,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5856.9995 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5964.3 +,16016,11.71,Typically Developing Children,Male,108,119,113,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9087.999 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8466.5 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4842.3 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,356.6 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,64.7 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68501.0 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1087002.8 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1098326.8 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1082317.0 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,383878.0 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,630415.75 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,843838.75 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11324.0 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1040.2 +,16016,11.71,Typically Developing Children,Male,108,119,113,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,195116.97 +,16016,11.71,Typically Developing Children,Male,108,119,113,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,754944.9 +,16016,11.71,Typically Developing Children,Male,108,119,113,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16016,11.71,Typically Developing Children,Male,108,119,113,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,507360.94 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,627.0 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1150.0 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9328661.0 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1164276.0 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1152019.0 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1152319.5 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16670.1 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,791.6 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,699.2 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,630.6 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,455.0 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,870.8 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,831.3 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1459251.4 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,186279.0 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,290367.66 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,445.99973 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,472.5 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1054.9994 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1875.7 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2585.9985 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3743.2 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55997.3 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12088.8 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3660.9978 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3960.8 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,324.1 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4435.4 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1646.999 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2089.5 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4596.997 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5608.2 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6737.996 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7253.9 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3551.9 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,256.0 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,13.7 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1533999.0 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,103.2 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,185954.14 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,295473.75 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,266.99985 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,522.6 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,708.9996 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1932.9 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3986.9976 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3840.7 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56039.5 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11213.3 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3587.9978 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4059.9 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,278.9 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4392.9 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1676.999 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1947.6 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5030.997 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5420.1 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6991.9956 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7268.4 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3520.7 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,330.4 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,11.3 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58403.0 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1019206.56 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1028891.56 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1016086.0 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,372233.16 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,585841.4 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,757385.4 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9685.0 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,804.4 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,171294.9 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,706491.6 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16017,11.75,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,464279.75 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,973.0 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2296.0 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16018,12.12,Typically Developing Children,Female,118,103,115,http://purl.org/nidash/fsl#,Background (mm^3),,,9321611.0 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1135558.0 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1116856.0 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1117296.0 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19740.7 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,911.4 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,661.8 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,627.2 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,636.3 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1138.6 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,915.0 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1467213.5 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,197655.33 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,269909.1 +,16018,12.12,Typically Developing Children,Female,118,103,115,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,482.9996 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,532.6 +,16018,12.12,Typically Developing Children,Female,118,103,115,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1380.9989 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1433.5 +,16018,12.12,Typically Developing Children,Female,118,103,115,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4409.996 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4481.2 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52399.6 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12337.9 +,16018,12.12,Typically Developing Children,Female,118,103,115,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3846.9968 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3854.6 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,312.1 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6953.0 +,16018,12.12,Typically Developing Children,Female,118,103,115,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1910.9984 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2175.6 +,16018,12.12,Typically Developing Children,Female,118,103,115,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5169.9956 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5330.4 +,16018,12.12,Typically Developing Children,Female,118,103,115,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8091.993 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7894.6 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4004.3 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,506.1 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,16.5 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1501495.0 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,119.4 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,193702.08 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,266824.47 +,16018,12.12,Typically Developing Children,Female,118,103,115,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,393.99966 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,553.5 +,16018,12.12,Typically Developing Children,Female,118,103,115,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1324.9989 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1512.1 +,16018,12.12,Typically Developing Children,Female,118,103,115,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4655.996 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4500.9 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,52078.7 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12036.1 +,16018,12.12,Typically Developing Children,Female,118,103,115,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3566.997 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3782.9 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,343.4 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6118.6 +,16018,12.12,Typically Developing Children,Female,118,103,115,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1860.9984 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1946.5 +,16018,12.12,Typically Developing Children,Female,118,103,115,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5138.9956 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5337.7 +,16018,12.12,Typically Developing Children,Female,118,103,115,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7792.9937 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8139.7 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4031.1 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,516.3 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,17.8 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60887.0 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,991321.0 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1005841.0 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,988448.0 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,391357.4 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,536733.56 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,702476.56 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14520.0 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,752.0 +,16018,12.12,Typically Developing Children,Female,118,103,115,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,187506.84 +,16018,12.12,Typically Developing Children,Female,118,103,115,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,646244.5 +,16018,12.12,Typically Developing Children,Female,118,103,115,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16018,12.12,Typically Developing Children,Female,118,103,115,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,473195.62 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,877.7 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1537.1 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9325159.0 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1099530.0 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1077468.0 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1077409.6 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17460.8 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,966.1 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,393.6 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,421.1 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,381.6 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,799.8 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,987.9 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1448931.8 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,184075.47 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,260950.47 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,361.99976 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,605.1 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,990.99927 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1554.3 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4150.997 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4701.4 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52240.6 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12388.7 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3215.9978 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3912.2 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,442.5 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8899.7 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1608.9989 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1924.7 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4903.9966 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5538.6 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7360.9946 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7284.7 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4096.7 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,603.2 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.5 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1483085.0 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,146.4 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,184468.16 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,260431.5 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,250.99982 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,560.0 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1112.9991 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1624.9 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4663.9966 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4771.7 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,51417.5 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10802.0 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3903.9973 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3872.7 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,507.8 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7959.6 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1705.9988 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1998.3 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5079.9966 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5472.7 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7169.9946 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7246.4 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4065.7 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,677.1 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,17.9 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61019.0 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,952683.56 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,971346.56 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,950885.0 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,368543.62 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,521381.97 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,686410.94 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,18663.0 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,955.4 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,212175.84 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,648290.5 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16019,12.23,Typically Developing Children,Female,89,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,456763.7 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1002.6 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1851.5 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9324425.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1263603.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1240170.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1240534.5 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20366.2 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,938.7 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,499.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,508.2 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,675.7 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,939.4 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,847.8 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1638421.1 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,229880.92 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,283052.1 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,549.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,559.9 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1174.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1745.1 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3418.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3475.5 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58328.7 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15047.5 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3227.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3963.8 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,448.2 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,9693.9 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1542.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2139.6 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5580.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5659.5 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8138.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8521.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4356.7 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,324.1 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,34.6 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1647172.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,162.7 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,232600.61 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,286796.88 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,311.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,520.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,702.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1799.9 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3649.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3647.6 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58038.9 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13449.3 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3895.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3882.5 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,259.6 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8868.6 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1814.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2157.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5357.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5755.6 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7867.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8494.8 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3989.3 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,648.6 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.8 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62330.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1097914.5 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1117683.5 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1094199.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,462481.53 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,569849.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,750355.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,19769.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,629.9 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,212214.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,717365.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16020,12.35,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,543036.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1431.6 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2067.2 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9320756.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1402315.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1366640.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1367281.2 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,24028.1 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,611.5 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,452.6 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,719.9 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,574.5 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,845.7 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1063.1 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1740113.2 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,243173.16 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,322898.62 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,541.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,641.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1116.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1845.7 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3889.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3795.2 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,69896.9 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16232.5 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4056.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4579.8 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,376.7 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,15380.3 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1736.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2167.9 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5536.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5792.2 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8153.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8776.2 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4790.2 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,739.4 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,57.7 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1857122.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,190.2 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,240197.27 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,325139.25 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,488.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,664.9 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1219.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1854.5 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3947.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3851.2 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,70173.9 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14680.4 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4192.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4559.5 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,354.7 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,13813.6 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2001.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2149.1 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5643.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5562.4 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8375.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8492.3 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4373.9 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,665.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,45.4 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65588.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1199271.2 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1230420.2 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1196276.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,483370.4 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,648037.9 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,854122.9 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,31149.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,866.8 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,254392.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,775024.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16021,12.41,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,587551.0 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,592.5 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1492.9 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16022,12.47,Typically Developing Children,Female,102,114,98,http://purl.org/nidash/fsl#,Background (mm^3),,,9326042.0 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1130571.0 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1119205.0 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1119715.8 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19647.1 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,748.4 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,540.3 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,383.0 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,394.1 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,815.2 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,817.3 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1417741.9 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,193459.61 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,264018.47 +,16022,12.47,Typically Developing Children,Female,102,114,98,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,527.0005 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,492.9 +,16022,12.47,Typically Developing Children,Female,102,114,98,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1373.0013 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1620.2 +,16022,12.47,Typically Developing Children,Female,102,114,98,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3854.0037 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3803.0 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58442.1 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13996.4 +,16022,12.47,Typically Developing Children,Female,102,114,98,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3506.0034 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3657.5 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,307.4 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4381.3 +,16022,12.47,Typically Developing Children,Female,102,114,98,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1596.0015 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1806.1 +,16022,12.47,Typically Developing Children,Female,102,114,98,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4480.0044 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4489.0 +,16022,12.47,Typically Developing Children,Female,102,114,98,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7756.0073 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7332.6 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3789.0 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,388.1 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,22.0 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1489878.0 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,113.9 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,193944.28 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,268589.4 +,16022,12.47,Typically Developing Children,Female,102,114,98,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,501.0005 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,523.3 +,16022,12.47,Typically Developing Children,Female,102,114,98,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1415.0013 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1661.9 +,16022,12.47,Typically Developing Children,Female,102,114,98,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3807.0037 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4005.0 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58247.0 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13497.7 +,16022,12.47,Typically Developing Children,Female,102,114,98,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3382.0032 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3846.6 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,218.5 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3145.3 +,16022,12.47,Typically Developing Children,Female,102,114,98,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1714.0016 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1885.5 +,16022,12.47,Typically Developing Children,Female,102,114,98,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4276.004 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4386.7 +,16022,12.47,Typically Developing Children,Female,102,114,98,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7428.0073 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7339.0 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3644.7 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,431.9 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,36.4 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55847.0 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,977738.75 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,986298.75 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,975288.0 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,387403.88 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,532607.9 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,705654.9 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8560.0 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,853.4 +,16022,12.47,Typically Developing Children,Female,102,114,98,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,182244.19 +,16022,12.47,Typically Developing Children,Female,102,114,98,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,654888.6 +,16022,12.47,Typically Developing Children,Female,102,114,98,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16022,12.47,Typically Developing Children,Female,102,114,98,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,492153.5 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,982.8 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1823.6 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16023,12.51,Typically Developing Children,Female,107,105,113,http://purl.org/nidash/fsl#,Background (mm^3),,,9320025.0 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1271957.0 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1255722.0 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1256009.2 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22402.1 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,790.1 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,694.0 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,593.3 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,518.4 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,965.1 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,945.0 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1620377.9 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,228581.39 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,293478.28 +,16023,12.51,Typically Developing Children,Female,107,105,113,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,471.00012 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,488.8 +,16023,12.51,Typically Developing Children,Female,107,105,113,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1252.0002 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1716.9 +,16023,12.51,Typically Developing Children,Female,107,105,113,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3770.001 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3919.9 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57396.5 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16409.1 +,16023,12.51,Typically Developing Children,Female,107,105,113,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4244.001 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4111.2 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,434.6 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5964.5 +,16023,12.51,Typically Developing Children,Female,107,105,113,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1906.0005 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2203.1 +,16023,12.51,Typically Developing Children,Female,107,105,113,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5774.0015 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5939.1 +,16023,12.51,Typically Developing Children,Female,107,105,113,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8466.002 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8862.2 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4586.4 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,519.7 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,25.7 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1705900.0 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,154.8 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,230246.8 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,288727.78 +,16023,12.51,Typically Developing Children,Female,107,105,113,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,289.00006 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,520.0 +,16023,12.51,Typically Developing Children,Female,107,105,113,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1115.0002 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2041.8 +,16023,12.51,Typically Developing Children,Female,107,105,113,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4134.001 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3840.0 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60059.9 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15872.3 +,16023,12.51,Typically Developing Children,Female,107,105,113,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4693.001 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4479.2 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,519.9 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5037.1 +,16023,12.51,Typically Developing Children,Female,107,105,113,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1955.0005 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2107.1 +,16023,12.51,Typically Developing Children,Female,107,105,113,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5739.0015 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5862.6 +,16023,12.51,Typically Developing Children,Female,107,105,113,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7817.002 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8602.3 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4351.1 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,510.2 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,22.5 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65146.0 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1108973.2 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1121568.2 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1105819.0 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,458828.2 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,582206.06 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,765781.06 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12595.0 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,936.3 +,16023,12.51,Typically Developing Children,Female,107,105,113,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,224011.06 +,16023,12.51,Typically Developing Children,Female,107,105,113,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,692649.1 +,16023,12.51,Typically Developing Children,Female,107,105,113,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16023,12.51,Typically Developing Children,Female,107,105,113,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,541319.1 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,612.2 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1415.4 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16024,12.65,Typically Developing Children,Female,117,109,103,http://purl.org/nidash/fsl#,Background (mm^3),,,9323794.0 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1205003.0 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1190737.0 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1191274.9 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18309.2 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,944.3 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,518.6 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,468.8 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,578.9 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1000.7 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,868.9 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1587523.4 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,217681.66 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,275440.62 +,16024,12.65,Typically Developing Children,Female,117,109,103,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,374.00018 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,932.7 +,16024,12.65,Typically Developing Children,Female,117,109,103,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,987.0005 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1667.9 +,16024,12.65,Typically Developing Children,Female,117,109,103,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4017.002 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4416.9 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57491.1 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13567.5 +,16024,12.65,Typically Developing Children,Female,117,109,103,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3785.0017 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3788.8 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,234.9 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4834.7 +,16024,12.65,Typically Developing Children,Female,117,109,103,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1588.0007 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1992.9 +,16024,12.65,Typically Developing Children,Female,117,109,103,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4806.0024 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5302.8 +,16024,12.65,Typically Developing Children,Female,117,109,103,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8315.004 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8300.6 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4130.4 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,454.1 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,70.9 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1594323.0 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,149.8 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,218475.77 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,275244.78 +,16024,12.65,Typically Developing Children,Female,117,109,103,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,90.000046 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,736.3 +,16024,12.65,Typically Developing Children,Female,117,109,103,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1010.0005 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1818.8 +,16024,12.65,Typically Developing Children,Female,117,109,103,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4644.0024 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4367.4 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57501.7 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13076.7 +,16024,12.65,Typically Developing Children,Female,117,109,103,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3412.0017 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3808.4 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,260.6 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5486.5 +,16024,12.65,Typically Developing Children,Female,117,109,103,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1568.0007 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1892.1 +,16024,12.65,Typically Developing Children,Female,117,109,103,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5268.0024 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5322.1 +,16024,12.65,Typically Developing Children,Female,117,109,103,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7994.004 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8288.5 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3993.6 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,524.0 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,42.2 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62624.0 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1051968.9 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1063400.9 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1048859.0 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,436157.4 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,550685.4 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,729264.4 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11432.0 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,840.3 +,16024,12.65,Typically Developing Children,Female,117,109,103,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,208933.1 +,16024,12.65,Typically Developing Children,Female,117,109,103,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,695206.4 +,16024,12.65,Typically Developing Children,Female,117,109,103,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16024,12.65,Typically Developing Children,Female,117,109,103,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,519232.25 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,665.2 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1743.9 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9321625.0 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1200377.0 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1189120.0 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1189096.5 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21580.8 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,674.4 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,640.9 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,456.6 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,425.2 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,693.2 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,618.8 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1564853.8 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,207376.73 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,280464.06 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,503.99963 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,544.5 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1109.9991 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1647.6 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3116.9978 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3572.9 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60311.9 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14167.9 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3479.9976 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4161.0 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,271.2 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4016.3 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1852.9987 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2381.6 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5899.9956 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6662.7 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8467.994 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8333.8 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4785.3 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,310.4 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,23.6 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1602967.0 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,107.6 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,207628.36 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,273711.3 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,458.99966 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,598.6 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1172.9991 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1724.2 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3678.9973 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3885.8 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63277.3 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14950.8 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3875.9973 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4370.5 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,375.7 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3341.0 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1887.9987 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1992.8 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6235.9956 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6580.6 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8272.994 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8433.9 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4801.3 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,350.5 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,23.8 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66201.0 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1039436.44 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1047750.44 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1035354.0 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,415005.1 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,554175.4 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,745896.4 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8314.0 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1901.0 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,177929.88 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,680147.5 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16025,12.71,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,537431.6 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,760.8 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1904.1 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16026,12.88,Typically Developing Children,Male,109,93,112,http://purl.org/nidash/fsl#,Background (mm^3),,,9323793.0 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1148792.0 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1134950.0 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1135321.6 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18027.4 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,610.3 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,666.4 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,558.5 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,595.4 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,968.0 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,727.9 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1470311.1 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,202446.4 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,271974.38 +,16026,12.88,Typically Developing Children,Male,109,93,112,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,458.00006 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,554.5 +,16026,12.88,Typically Developing Children,Male,109,93,112,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1088.0001 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1451.6 +,16026,12.88,Typically Developing Children,Male,109,93,112,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3561.0005 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3520.1 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53656.8 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11651.6 +,16026,12.88,Typically Developing Children,Male,109,93,112,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3858.0005 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3752.7 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,335.9 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4510.8 +,16026,12.88,Typically Developing Children,Male,109,93,112,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1629.0002 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1999.8 +,16026,12.88,Typically Developing Children,Male,109,93,112,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5707.0005 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6156.9 +,16026,12.88,Typically Developing Children,Male,109,93,112,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7828.001 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7828.0 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3774.2 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,273.2 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,24.5 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1500353.0 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,120.0 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,202261.23 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,269690.7 +,16026,12.88,Typically Developing Children,Male,109,93,112,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,439.00006 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,552.5 +,16026,12.88,Typically Developing Children,Male,109,93,112,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,895.0001 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1621.0 +,16026,12.88,Typically Developing Children,Male,109,93,112,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3703.0005 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3713.4 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53180.4 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11004.6 +,16026,12.88,Typically Developing Children,Male,109,93,112,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3636.0005 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3848.4 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,338.3 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5107.8 +,16026,12.88,Typically Developing Children,Male,109,93,112,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1723.0002 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1780.2 +,16026,12.88,Typically Developing Children,Male,109,93,112,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5723.0005 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5898.7 +,16026,12.88,Typically Developing Children,Male,109,93,112,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7608.001 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7471.5 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3710.9 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,335.4 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.2 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59118.0 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1008156.7 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1018651.7 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1005037.0 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,404707.62 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,541665.06 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,708718.06 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10495.0 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,667.2 +,16026,12.88,Typically Developing Children,Male,109,93,112,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,166830.03 +,16026,12.88,Typically Developing Children,Male,109,93,112,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,668951.1 +,16026,12.88,Typically Developing Children,Male,109,93,112,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16026,12.88,Typically Developing Children,Male,109,93,112,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,488128.1 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,714.3 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2370.7 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9315257.0 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1472905.0 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1457736.0 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1458175.4 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,24699.9 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1253.4 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,881.5 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,1031.0 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,811.5 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1202.0 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,953.3 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1888112.8 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,286019.44 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,327458.06 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,465.00012 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,758.0 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1633.0004 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1902.6 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4142.001 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,5036.2 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,65844.5 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16243.2 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3746.001 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4433.0 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,374.9 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5160.4 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1973.0005 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2393.4 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6001.0015 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6103.7 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,10087.002 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,10637.6 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4917.8 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,452.5 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,46.3 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1939689.0 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,94.0 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,281943.62 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,324000.22 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,234.00006 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,832.1 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1414.0004 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2010.5 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5286.0015 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5197.1 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,69108.5 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14984.2 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3992.001 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4457.1 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,377.5 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4799.5 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2013.0005 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2423.5 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5917.0015 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5869.9 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9490.002 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9605.8 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4761.6 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,522.8 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,13.5 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,73094.0 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1294748.4 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1305977.4 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1292038.0 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,567963.06 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,651458.3 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,860079.3 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11229.0 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1586.8 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,254469.06 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,770450.1 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16027,12.91,Typically Developing Children,Male,123,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,665907.1 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,814.7 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1703.7 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9316891.0 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1344692.0 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1332576.0 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1333145.8 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21741.0 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,816.8 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,725.6 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,686.7 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,537.4 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,884.7 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,874.9 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1695915.6 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,237764.19 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,320710.84 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,570.00024 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,453.6 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1313.0006 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1830.1 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3638.0017 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3652.2 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58932.2 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14059.5 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4442.002 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4654.4 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,257.3 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4350.0 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1882.0009 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2422.4 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5757.003 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5895.8 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9402.005 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9956.5 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4951.9 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,388.2 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,40.8 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1780995.0 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,183.5 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,239204.5 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,321051.22 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,501.00024 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,554.5 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1557.0007 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1931.9 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3571.0017 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3740.6 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60279.8 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12774.2 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4598.002 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4691.9 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,357.0 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3350.3 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2026.001 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2162.5 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5882.003 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6056.1 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9622.005 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9646.8 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4587.8 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,405.4 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,41.2 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68926.0 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1189790.8 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1198548.8 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1186970.0 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,476968.7 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,641762.06 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,830409.06 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8758.0 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,596.1 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,240812.12 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,765622.4 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16028,13.03,Typically Developing Children,Male,111,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,563873.25 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,910.1 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,3663.9 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16029,13.11,Typically Developing Children,Male,88,99,99,http://purl.org/nidash/fsl#,Background (mm^3),,,9319841.0 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1432297.0 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1418574.0 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1419217.4 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22695.2 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,805.7 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,632.0 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,609.8 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,515.5 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,837.0 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,996.6 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1865851.6 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,249519.36 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,335994.38 +,16029,13.11,Typically Developing Children,Male,88,99,99,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,307.99976 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,487.6 +,16029,13.11,Typically Developing Children,Male,88,99,99,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1184.999 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1900.5 +,16029,13.11,Typically Developing Children,Male,88,99,99,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3796.997 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4449.3 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,72037.4 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16056.3 +,16029,13.11,Typically Developing Children,Male,88,99,99,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4159.9966 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4880.9 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,310.9 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3645.6 +,16029,13.11,Typically Developing Children,Male,88,99,99,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1849.9985 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2384.9 +,16029,13.11,Typically Developing Children,Male,88,99,99,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4919.996 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6189.9 +,16029,13.11,Typically Developing Children,Male,88,99,99,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8440.993 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9678.6 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4742.3 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,321.6 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,35.9 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1915802.0 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,146.0 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,248495.11 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,337449.5 +,16029,13.11,Typically Developing Children,Male,88,99,99,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,490.99963 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,578.8 +,16029,13.11,Typically Developing Children,Male,88,99,99,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1292.999 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2273.8 +,16029,13.11,Typically Developing Children,Male,88,99,99,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3942.9968 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4842.4 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,73609.6 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14300.3 +,16029,13.11,Typically Developing Children,Male,88,99,99,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4189.9966 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4936.3 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,370.1 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3568.7 +,16029,13.11,Typically Developing Children,Male,88,99,99,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1851.9985 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2303.0 +,16029,13.11,Typically Developing Children,Male,88,99,99,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6498.995 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6627.1 +,16029,13.11,Typically Developing Children,Male,88,99,99,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8870.993 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9267.6 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4628.3 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,388.1 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,25.0 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,71817.0 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1246104.4 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1254274.4 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1242525.0 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,498014.47 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,673443.9 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,891724.9 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8170.0 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1213.5 +,16029,13.11,Typically Developing Children,Male,88,99,99,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,233050.83 +,16029,13.11,Typically Developing Children,Male,88,99,99,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,818711.4 +,16029,13.11,Typically Developing Children,Male,88,99,99,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16029,13.11,Typically Developing Children,Male,88,99,99,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,592412.5 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,844.3 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1893.4 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9322997.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1178378.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1159633.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1160336.4 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20825.2 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,853.9 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,480.3 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,443.1 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,465.4 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,866.6 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,919.1 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1567754.2 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,203715.92 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,273372.44 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,640.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,538.6 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,930.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1546.6 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3552.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4060.7 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61604.6 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13802.7 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4069.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4013.8 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,536.1 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6833.2 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1709.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2209.3 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5028.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5407.8 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8142.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7781.9 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4041.4 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,496.8 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,18.7 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1611452.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,163.1 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,203322.72 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,270131.3 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,463.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,509.4 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1352.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1722.9 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3914.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4032.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60635.1 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12956.2 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4047.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4258.6 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,506.9 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6524.7 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1614.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1937.4 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5188.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5472.6 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8003.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7631.4 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3997.1 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,621.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.4 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60892.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1013069.44 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1028168.44 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1010596.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,407038.62 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,543503.75 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,727285.75 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15099.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,814.7 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,239618.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,676138.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16030,13.44,Typically Developing Children,Male,96,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,495646.0 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1027.3 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2563.7 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16031,13.53,Typically Developing Children,Male,124,116,122,http://purl.org/nidash/fsl#,Background (mm^3),,,9317974.0 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1340432.0 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1324022.0 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1324323.6 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,23359.5 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,545.8 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,528.4 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,425.3 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,272.3 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,600.3 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1013.4 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1697805.5 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,225057.47 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,317226.16 +,16031,13.53,Typically Developing Children,Male,124,116,122,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,521.9998 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,540.0 +,16031,13.53,Typically Developing Children,Male,124,116,122,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1204.9995 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1523.3 +,16031,13.53,Typically Developing Children,Male,124,116,122,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4159.9985 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3999.0 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,69324.0 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15521.2 +,16031,13.53,Typically Developing Children,Male,124,116,122,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4085.9985 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4441.4 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,322.3 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5583.6 +,16031,13.53,Typically Developing Children,Male,124,116,122,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1821.9994 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2221.2 +,16031,13.53,Typically Developing Children,Male,124,116,122,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5916.998 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6235.7 +,16031,13.53,Typically Developing Children,Male,124,116,122,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8689.997 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9650.6 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4553.2 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,428.0 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,15.0 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1806656.0 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,105.7 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,226509.58 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,318083.47 +,16031,13.53,Typically Developing Children,Male,124,116,122,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,551.9998 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,527.3 +,16031,13.53,Typically Developing Children,Male,124,116,122,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1355.9995 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1902.0 +,16031,13.53,Typically Developing Children,Male,124,116,122,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3703.9988 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3991.2 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,70814.7 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14594.2 +,16031,13.53,Typically Developing Children,Male,124,116,122,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4438.9985 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4831.0 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,354.2 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4917.4 +,16031,13.53,Typically Developing Children,Male,124,116,122,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1932.9993 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2125.2 +,16031,13.53,Typically Developing Children,Male,124,116,122,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6122.998 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6355.4 +,16031,13.53,Typically Developing Children,Male,124,116,122,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9161.997 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8496.9 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4598.2 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,556.6 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,27.9 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67292.0 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1156742.6 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1168593.6 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1153784.0 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,451567.03 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,635309.6 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,843704.6 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11851.0 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1006.8 +,16031,13.53,Typically Developing Children,Male,124,116,122,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,237208.9 +,16031,13.53,Typically Developing Children,Male,124,116,122,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,764365.75 +,16031,13.53,Typically Developing Children,Male,124,116,122,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16031,13.53,Typically Developing Children,Male,124,116,122,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,561161.75 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,630.8 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1609.0 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9330454.0 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1013091.0 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1002729.0 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1003342.25 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18553.3 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,636.4 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,510.8 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,569.6 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,294.0 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,673.4 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,758.1 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1318370.6 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,168679.14 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,241350.11 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,482.00024 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,484.0 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,959.0004 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1444.0 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2953.0015 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2856.1 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52102.0 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11972.0 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3596.0017 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3887.3 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,139.4 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3108.9 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1381.0006 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1782.1 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4071.002 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,3967.3 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7213.0034 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7222.3 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3520.7 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,332.9 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.7 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1353590.0 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,106.0 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,170352.27 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,244699.73 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,434.0002 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,454.3 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,823.00037 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1673.0 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2956.0015 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2892.4 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,51496.0 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10966.3 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3567.0017 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3976.7 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,347.3 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3298.2 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1370.0006 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1468.4 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4177.002 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4256.1 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7216.0034 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6771.8 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3711.5 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,381.4 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,37.1 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,51831.0 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,879154.25 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,886497.25 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,876230.0 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,339031.4 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,486049.84 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,642256.8 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7343.0 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,360.1 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,166296.1 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,608967.25 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16032,13.65,Typically Developing Children,Female,105,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,427999.2 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,846.4 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1658.8 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9321190.0 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1311505.0 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1280938.0 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1281562.8 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21366.6 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,828.0 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,434.4 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,410.8 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,533.9 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,950.6 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,760.8 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1714625.2 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,230388.89 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,295017.25 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,394.00027 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,627.0 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,892.0006 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1579.2 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4201.003 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4666.7 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62694.0 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16025.6 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2993.0022 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4678.0 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,517.4 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,16090.1 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1846.0013 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2573.9 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5540.004 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6073.3 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8425.006 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9177.6 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4640.1 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,550.6 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,33.4 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1707648.0 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,155.3 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,231821.31 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,295976.22 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,426.0003 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,634.9 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1029.0007 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1759.5 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4454.0034 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4994.6 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63105.4 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15635.0 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3607.0027 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4642.9 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,219.7 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,9144.9 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1895.0013 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2294.7 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5832.0044 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6015.8 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8931.007 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9511.4 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4330.1 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,763.1 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,33.8 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,70355.0 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1125935.8 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1153320.8 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1122828.0 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,462210.22 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,590993.5 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,788394.5 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,27385.0 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1208.7 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,237015.16 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,751415.5 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16033,13.68,Typically Developing Children,Male,99,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,545195.4 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,947.5 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1952.6 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16034,13.87,Typically Developing Children,Female,109,114,105,http://purl.org/nidash/fsl#,Background (mm^3),,,9318609.0 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1382282.0 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1362686.0 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1363022.6 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22613.5 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,965.7 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,614.9 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,560.1 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,564.6 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,983.2 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1138.8 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1742540.6 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,263383.4 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,308591.38 +,16034,13.87,Typically Developing Children,Female,109,114,105,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,269.00012 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,727.3 +,16034,13.87,Typically Developing Children,Female,109,114,105,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,963.0005 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1575.9 +,16034,13.87,Typically Developing Children,Female,109,114,105,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4053.002 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4773.2 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59824.9 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14329.6 +,16034,13.87,Typically Developing Children,Female,109,114,105,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,5451.0024 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4596.7 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,328.4 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6136.8 +,16034,13.87,Typically Developing Children,Female,109,114,105,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1746.0009 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2637.5 +,16034,13.87,Typically Developing Children,Female,109,114,105,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4850.0024 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6154.8 +,16034,13.87,Typically Developing Children,Female,109,114,105,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9628.005 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,10357.8 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4914.5 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,396.0 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,24.7 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1794751.0 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,164.5 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,261837.12 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,308083.72 +,16034,13.87,Typically Developing Children,Female,109,114,105,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,336.00015 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,756.4 +,16034,13.87,Typically Developing Children,Female,109,114,105,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,791.00037 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1829.6 +,16034,13.87,Typically Developing Children,Female,109,114,105,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4518.002 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4831.6 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61025.8 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14079.6 +,16034,13.87,Typically Developing Children,Female,109,114,105,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4387.002 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4611.4 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,282.1 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8434.6 +,16034,13.87,Typically Developing Children,Female,109,114,105,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1740.0009 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2396.5 +,16034,13.87,Typically Developing Children,Female,109,114,105,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4631.0024 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6044.0 +,16034,13.87,Typically Developing Children,Female,109,114,105,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9680.005 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9771.6 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4800.7 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,472.0 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.9 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,72088.0 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1216464.6 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1232040.6 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1213492.0 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,525220.5 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,616675.06 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,810514.06 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15576.0 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,673.1 +,16034,13.87,Typically Developing Children,Female,109,114,105,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,235531.12 +,16034,13.87,Typically Developing Children,Female,109,114,105,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,771995.4 +,16034,13.87,Typically Developing Children,Female,109,114,105,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16034,13.87,Typically Developing Children,Female,109,114,105,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,605763.25 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,622.5 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1693.3 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9318574.0 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1283235.0 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1271413.0 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1271936.6 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21281.6 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,782.8 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,780.9 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,656.6 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,540.6 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,826.3 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,793.3 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1622039.8 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,225644.28 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,308185.47 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,511.99963 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,592.2 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1216.9991 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1625.6 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4391.997 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4536.4 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55662.1 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12395.1 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4155.997 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4350.7 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,211.2 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4161.8 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1849.9987 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2283.6 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5653.996 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5740.4 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8921.993 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9279.2 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4717.0 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,424.3 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,16.7 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1657414.0 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,150.7 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,222785.88 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,307003.03 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,514.99963 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,671.0 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1233.9991 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1832.5 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4550.9966 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4515.8 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59688.6 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12224.8 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4059.997 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4619.3 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,300.3 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3542.5 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1965.9985 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2205.3 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5464.996 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5420.1 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8572.994 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9022.2 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4473.2 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,440.4 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,21.7 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67431.0 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1134538.6 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1143268.6 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1130393.0 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,448430.16 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,615188.5 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,799879.5 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8730.0 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,650.1 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,206144.84 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,735107.5 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16035,13.94,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,532017.6 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,835.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2057.9 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,http://purl.org/nidash/fsl#,Background (mm^3),,,9318754.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1424263.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1403899.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1404424.9 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21808.8 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,976.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,403.3 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,501.8 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,435.8 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,881.3 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,912.8 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1877595.9 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,235634.23 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,350539.16 +,16036,13.97,Typically Developing Children,Male,107,92,116,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,805.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,685.9 +,16036,13.97,Typically Developing Children,Male,107,92,116,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1298.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,2112.1 +,16036,13.97,Typically Developing Children,Male,107,92,116,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3777.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3559.8 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,67921.6 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15841.7 +,16036,13.97,Typically Developing Children,Male,107,92,116,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4230.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4302.5 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,440.2 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7166.2 +,16036,13.97,Typically Developing Children,Male,107,92,116,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1723.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2409.3 +,16036,13.97,Typically Developing Children,Male,107,92,116,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6089.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6624.3 +,16036,13.97,Typically Developing Children,Male,107,92,116,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8646.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8730.4 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4557.7 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,452.2 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,33.7 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1943511.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,224.5 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,234175.62 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,349291.84 +,16036,13.97,Typically Developing Children,Male,107,92,116,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,584.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,643.3 +,16036,13.97,Typically Developing Children,Male,107,92,116,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1166.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2233.5 +,16036,13.97,Typically Developing Children,Male,107,92,116,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3763.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3809.8 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,69692.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14391.5 +,16036,13.97,Typically Developing Children,Male,107,92,116,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3936.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4486.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,400.2 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7735.9 +,16036,13.97,Typically Developing Children,Male,107,92,116,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1955.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2026.8 +,16036,13.97,Typically Developing Children,Male,107,92,116,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6512.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6922.8 +,16036,13.97,Typically Developing Children,Male,107,92,116,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8410.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7829.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4509.5 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,602.4 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,17.7 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67131.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1239093.9 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1255615.9 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1236138.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,469809.88 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,699831.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,905204.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,16522.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,629.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,260083.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,827442.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16036,13.97,Typically Developing Children,Male,107,92,116,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,573865.0 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,782.3 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1466.3 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16037,14.15,Typically Developing Children,Male,117,129,109,http://purl.org/nidash/fsl#,Background (mm^3),,,9319274.0 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1245257.0 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1235480.0 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1236063.5 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21484.4 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,787.2 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,684.7 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,615.9 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,467.0 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,847.7 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,799.4 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1604638.6 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,220096.92 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,289874.03 +,16037,14.15,Typically Developing Children,Male,117,129,109,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,315.0002 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,687.0 +,16037,14.15,Typically Developing Children,Male,117,129,109,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,974.0007 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1716.9 +,16037,14.15,Typically Developing Children,Male,117,129,109,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4325.003 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4321.7 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60331.0 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14025.2 +,16037,14.15,Typically Developing Children,Male,117,129,109,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3901.0027 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4448.0 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,289.5 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2888.8 +,16037,14.15,Typically Developing Children,Male,117,129,109,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1890.0013 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2370.7 +,16037,14.15,Typically Developing Children,Male,117,129,109,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6247.0044 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6880.4 +,16037,14.15,Typically Developing Children,Male,117,129,109,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8456.006 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8741.7 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4503.4 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,292.4 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,28.1 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1663622.0 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,135.4 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,219403.31 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,290059.28 +,16037,14.15,Typically Developing Children,Male,117,129,109,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,531.00037 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,685.3 +,16037,14.15,Typically Developing Children,Male,117,129,109,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,973.0007 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1811.5 +,16037,14.15,Typically Developing Children,Male,117,129,109,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4642.0034 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4740.5 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60493.2 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13376.0 +,16037,14.15,Typically Developing Children,Male,117,129,109,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3878.0027 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4548.6 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,307.2 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3084.5 +,16037,14.15,Typically Developing Children,Male,117,129,109,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2025.0015 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2288.4 +,16037,14.15,Typically Developing Children,Male,117,129,109,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6190.0044 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6424.9 +,16037,14.15,Typically Developing Children,Male,117,129,109,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8034.006 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8164.7 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4700.6 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,404.4 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,45.4 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68469.0 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1089737.5 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1096562.5 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1087240.0 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,439500.22 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,579933.3 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,769909.3 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6825.0 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1036.6 +,16037,14.15,Typically Developing Children,Male,117,129,109,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,195717.12 +,16037,14.15,Typically Developing Children,Male,117,129,109,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,713009.5 +,16037,14.15,Typically Developing Children,Male,117,129,109,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16037,14.15,Typically Developing Children,Male,117,129,109,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,538055.4 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1165.9 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1709.0 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16038,14.24,Typically Developing Children,Male,91,107,98,http://purl.org/nidash/fsl#,Background (mm^3),,,9316460.0 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1325354.0 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1304222.0 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1304281.6 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,24753.5 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,978.3 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,581.1 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,699.1 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,379.6 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,650.1 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1183.7 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1793811.9 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,230675.25 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,299511.2 +,16038,14.24,Typically Developing Children,Male,91,107,98,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,765.9997 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,591.4 +,16038,14.24,Typically Developing Children,Male,91,107,98,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1057.9995 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1522.2 +,16038,14.24,Typically Developing Children,Male,91,107,98,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3912.9983 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4070.7 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,72219.5 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15873.5 +,16038,14.24,Typically Developing Children,Male,91,107,98,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3614.9985 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3919.0 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,732.6 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,9372.8 +,16038,14.24,Typically Developing Children,Male,91,107,98,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2064.999 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2789.5 +,16038,14.24,Typically Developing Children,Male,91,107,98,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6302.9976 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6572.6 +,16038,14.24,Typically Developing Children,Male,91,107,98,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9601.996 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9113.2 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,5136.3 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,441.1 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,64.2 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1809204.0 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,219.4 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,227676.9 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,299797.28 +,16038,14.24,Typically Developing Children,Male,91,107,98,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,554.99976 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,652.5 +,16038,14.24,Typically Developing Children,Male,91,107,98,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1291.9995 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1769.5 +,16038,14.24,Typically Developing Children,Male,91,107,98,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3990.9983 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4116.3 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,75119.3 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14818.6 +,16038,14.24,Typically Developing Children,Male,91,107,98,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4213.998 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4208.9 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,478.4 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6223.2 +,16038,14.24,Typically Developing Children,Male,91,107,98,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2180.999 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2358.6 +,16038,14.24,Typically Developing Children,Male,91,107,98,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6264.9976 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6172.7 +,16038,14.24,Typically Developing Children,Male,91,107,98,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9363.996 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9711.5 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,5019.3 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,542.2 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,37.1 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,69308.0 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1129059.6 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1146159.6 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1126804.0 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,458352.16 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,599308.5 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,816062.5 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,17100.0 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1090.1 +,16038,14.24,Typically Developing Children,Male,91,107,98,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,262659.88 +,16038,14.24,Typically Developing Children,Male,91,107,98,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,744835.6 +,16038,14.24,Typically Developing Children,Male,91,107,98,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16038,14.24,Typically Developing Children,Male,91,107,98,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,580203.75 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,908.3 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1985.0 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16039,14.57,Typically Developing Children,Male,110,100,116,http://purl.org/nidash/fsl#,Background (mm^3),,,9317333.0 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1417100.0 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1398879.0 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1398824.9 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21030.5 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,692.4 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,627.9 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,566.6 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,628.6 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,915.9 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,921.7 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1814050.8 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,253847.61 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,332503.6 +,16039,14.57,Typically Developing Children,Male,110,100,116,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,776.99945 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,831.5 +,16039,14.57,Typically Developing Children,Male,110,100,116,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,707.9995 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1827.1 +,16039,14.57,Typically Developing Children,Male,110,100,116,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4460.9966 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4359.9 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,68767.3 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14631.2 +,16039,14.57,Typically Developing Children,Male,110,100,116,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4461.9966 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4284.1 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,300.7 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7149.5 +,16039,14.57,Typically Developing Children,Male,110,100,116,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1769.9988 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2305.2 +,16039,14.57,Typically Developing Children,Male,110,100,116,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5591.996 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6196.7 +,16039,14.57,Typically Developing Children,Male,110,100,116,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8985.993 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9239.6 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4197.4 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,546.8 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.7 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1872081.0 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,210.4 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,244661.22 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,330587.44 +,16039,14.57,Typically Developing Children,Male,110,100,116,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,578.9996 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,828.6 +,16039,14.57,Typically Developing Children,Male,110,100,116,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,863.9994 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2219.1 +,16039,14.57,Typically Developing Children,Male,110,100,116,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4684.9966 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4636.7 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,70302.5 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14195.5 +,16039,14.57,Typically Developing Children,Male,110,100,116,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4171.997 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4352.0 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,273.6 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6048.0 +,16039,14.57,Typically Developing Children,Male,110,100,116,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2044.9985 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2266.6 +,16039,14.57,Typically Developing Children,Male,110,100,116,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6340.9956 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6021.3 +,16039,14.57,Typically Developing Children,Male,110,100,116,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8865.994 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9410.9 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4184.1 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,621.7 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.3 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68977.0 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1234165.9 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1248608.9 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1230446.0 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,498508.8 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,663091.06 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,872486.06 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14443.0 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1423.0 +,16039,14.57,Typically Developing Children,Male,110,100,116,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,242552.81 +,16039,14.57,Typically Developing Children,Male,110,100,116,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,794843.4 +,16039,14.57,Typically Developing Children,Male,110,100,116,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16039,14.57,Typically Developing Children,Male,110,100,116,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,588947.6 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,681.1 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1355.2 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16040,14.63,Typically Developing Children,Female,108,117,108,http://purl.org/nidash/fsl#,Background (mm^3),,,9327441.0 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1139066.0 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1126503.0 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1126609.0 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19129.1 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,754.2 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,478.3 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,497.6 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,601.6 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,949.6 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,930.3 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1547232.4 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,208294.64 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,256454.88 +,16040,14.63,Typically Developing Children,Female,108,117,108,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,347.00034 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,625.3 +,16040,14.63,Typically Developing Children,Female,108,117,108,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1297.0012 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1707.5 +,16040,14.63,Typically Developing Children,Female,108,117,108,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3024.003 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3464.8 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53758.0 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15670.3 +,16040,14.63,Typically Developing Children,Female,108,117,108,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3345.0032 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4399.3 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,131.4 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3913.9 +,16040,14.63,Typically Developing Children,Female,108,117,108,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1538.0015 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2578.6 +,16040,14.63,Typically Developing Children,Female,108,117,108,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5379.0054 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6075.7 +,16040,14.63,Typically Developing Children,Female,108,117,108,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7671.0073 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,10015.8 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4150.3 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,156.2 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,42.3 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1552073.0 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,89.1 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,203032.88 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,253121.64 +,16040,14.63,Typically Developing Children,Female,108,117,108,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,410.0004 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,672.5 +,16040,14.63,Typically Developing Children,Female,108,117,108,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,950.0009 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1839.6 +,16040,14.63,Typically Developing Children,Female,108,117,108,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3034.003 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3571.6 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,51695.6 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,16532.8 +,16040,14.63,Typically Developing Children,Female,108,117,108,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3499.0034 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4287.2 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,241.1 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5270.7 +,16040,14.63,Typically Developing Children,Female,108,117,108,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1565.0015 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2153.5 +,16040,14.63,Typically Developing Children,Female,108,117,108,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5127.005 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6090.9 +,16040,14.63,Typically Developing Children,Female,108,117,108,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7030.007 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9067.4 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4403.8 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,481.2 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.2 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67435.0 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,990822.06 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1000555.06 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,988159.0 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,411327.5 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,509576.53 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,683183.5 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9733.0 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1898.5 +,16040,14.63,Typically Developing Children,Female,108,117,108,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,215693.22 +,16040,14.63,Typically Developing Children,Female,108,117,108,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,654249.6 +,16040,14.63,Typically Developing Children,Female,108,117,108,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16040,14.63,Typically Developing Children,Female,108,117,108,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,528054.5 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,594.0 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1306.6 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16041,14.82,Typically Developing Children,Female,88,107,80,http://purl.org/nidash/fsl#,Background (mm^3),,,9329956.0 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1040578.0 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1029165.0 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1029516.3 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16909.2 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,667.5 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,591.2 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,654.0 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,490.1 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,931.9 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,735.0 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1339665.1 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,189906.05 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,233138.72 +,16041,14.82,Typically Developing Children,Female,88,107,80,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,432.00043 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,499.0 +,16041,14.82,Typically Developing Children,Female,88,107,80,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,835.0008 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1326.5 +,16041,14.82,Typically Developing Children,Female,88,107,80,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3578.0034 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3467.3 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52659.3 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12734.1 +,16041,14.82,Typically Developing Children,Female,88,107,80,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3300.0032 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3203.3 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,250.5 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3924.0 +,16041,14.82,Typically Developing Children,Female,88,107,80,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1490.0015 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1862.7 +,16041,14.82,Typically Developing Children,Female,88,107,80,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4303.004 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4621.6 +,16041,14.82,Typically Developing Children,Female,88,107,80,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6866.0063 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7035.4 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3501.3 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,437.3 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,46.2 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1406049.0 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,138.4 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,187716.12 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,234212.4 +,16041,14.82,Typically Developing Children,Female,88,107,80,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,390.00037 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,555.6 +,16041,14.82,Typically Developing Children,Female,88,107,80,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1231.0012 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1544.0 +,16041,14.82,Typically Developing Children,Female,88,107,80,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3601.0034 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3524.9 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55331.9 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11650.7 +,16041,14.82,Typically Developing Children,Female,88,107,80,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3233.0032 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3372.8 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,238.2 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3858.7 +,16041,14.82,Typically Developing Children,Female,88,107,80,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1444.0013 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1941.0 +,16041,14.82,Typically Developing Children,Female,88,107,80,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4224.004 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4746.0 +,16041,14.82,Typically Developing Children,Female,88,107,80,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6774.0063 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6832.9 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3356.7 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,422.2 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.2 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,52684.0 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,899530.3 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,908344.3 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,897239.0 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,377622.2 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,467351.12 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,628134.1 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8814.0 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,582.7 +,16041,14.82,Typically Developing Children,Female,88,107,80,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,193176.19 +,16041,14.82,Typically Developing Children,Female,88,107,80,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,607924.6 +,16041,14.82,Typically Developing Children,Female,88,107,80,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16041,14.82,Typically Developing Children,Female,88,107,80,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,440263.44 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,593.1 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1105.7 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,http://purl.org/nidash/fsl#,Background (mm^3),,,9325916.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1187264.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1172673.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1173216.5 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20315.2 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1146.1 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,624.2 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,541.7 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,540.1 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1013.4 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,815.8 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1435754.8 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,213675.86 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,274708.56 +,16042,14.84,Typically Developing Children,Female,109,115,107,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,310.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,586.7 +,16042,14.84,Typically Developing Children,Female,109,115,107,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,816.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1635.7 +,16042,14.84,Typically Developing Children,Female,109,115,107,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3647.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3923.4 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54893.2 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13823.9 +,16042,14.84,Typically Developing Children,Female,109,115,107,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2878.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3655.4 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,247.5 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7081.9 +,16042,14.84,Typically Developing Children,Female,109,115,107,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1687.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2097.3 +,16042,14.84,Typically Developing Children,Female,109,115,107,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5099.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5185.5 +,16042,14.84,Typically Developing Children,Female,109,115,107,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7695.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8021.6 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4397.7 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,224.7 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,50.6 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1587835.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,151.7 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,212155.03 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,276207.03 +,16042,14.84,Typically Developing Children,Female,109,115,107,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,231.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,631.1 +,16042,14.84,Typically Developing Children,Female,109,115,107,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1282.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1750.5 +,16042,14.84,Typically Developing Children,Female,109,115,107,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3760.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3979.6 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54657.6 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12633.9 +,16042,14.84,Typically Developing Children,Female,109,115,107,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3711.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4197.6 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,417.5 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4101.9 +,16042,14.84,Typically Developing Children,Female,109,115,107,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1695.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2040.7 +,16042,14.84,Typically Developing Children,Female,109,115,107,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5092.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5127.9 +,16042,14.84,Typically Developing Children,Female,109,115,107,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7829.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8129.9 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4117.1 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,348.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,13.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61124.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1039718.5 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1051858.5 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1037214.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,425830.9 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,550915.56 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,721761.56 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12140.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,385.5 +,16042,14.84,Typically Developing Children,Female,109,115,107,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,191134.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,691898.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16042,14.84,Typically Developing Children,Female,109,115,107,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,515896.0 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,643.7 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1405.5 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16043,14.85,Typically Developing Children,Female,107,115,105,http://purl.org/nidash/fsl#,Background (mm^3),,,9325334.0 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1088530.0 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1073242.0 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1073559.2 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19551.7 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,864.1 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,514.9 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,421.0 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,537.0 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1035.9 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,839.0 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1439099.1 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,195552.81 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,244605.95 +,16043,14.85,Typically Developing Children,Female,107,115,105,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,511.00012 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,666.4 +,16043,14.85,Typically Developing Children,Female,107,115,105,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,965.00024 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1437.5 +,16043,14.85,Typically Developing Children,Female,107,115,105,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3814.001 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3907.2 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55475.2 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13478.9 +,16043,14.85,Typically Developing Children,Female,107,115,105,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3682.001 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3676.2 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,408.7 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4945.0 +,16043,14.85,Typically Developing Children,Female,107,115,105,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1713.0004 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2110.9 +,16043,14.85,Typically Developing Children,Female,107,115,105,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5255.0015 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5467.2 +,16043,14.85,Typically Developing Children,Female,107,115,105,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7398.002 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7552.5 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4081.7 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,660.5 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,83.3 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1486394.0 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,190.0 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,193447.53 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,244274.0 +,16043,14.85,Typically Developing Children,Female,107,115,105,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,347.0001 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,644.7 +,16043,14.85,Typically Developing Children,Female,107,115,105,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1029.0002 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1501.1 +,16043,14.85,Typically Developing Children,Female,107,115,105,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3891.001 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3931.9 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56734.2 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11921.0 +,16043,14.85,Typically Developing Children,Female,107,115,105,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3503.0007 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3761.5 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,345.3 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5717.6 +,16043,14.85,Typically Developing Children,Female,107,115,105,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1718.0004 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2020.0 +,16043,14.85,Typically Developing Children,Female,107,115,105,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5178.0015 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5330.6 +,16043,14.85,Typically Developing Children,Female,107,115,105,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7312.002 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7205.2 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3954.7 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,657.8 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.6 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58757.0 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,938222.3 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,950627.3 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,936258.0 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,389000.34 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,488879.94 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,660406.94 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12405.0 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,327.9 +,16043,14.85,Typically Developing Children,Female,107,115,105,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,201813.06 +,16043,14.85,Typically Developing Children,Female,107,115,105,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,619478.1 +,16043,14.85,Typically Developing Children,Female,107,115,105,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16043,14.85,Typically Developing Children,Female,107,115,105,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,473367.12 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,737.0 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1480.8 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16044,14.85,Typically Developing Children,Male,82,81,88,http://purl.org/nidash/fsl#,Background (mm^3),,,9326954.0 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1178621.0 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1165540.0 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1166123.6 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18345.0 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,810.7 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,558.0 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,462.0 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,447.5 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,937.3 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,766.4 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1584546.9 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,200279.25 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,282467.56 +,16044,14.85,Typically Developing Children,Male,82,81,88,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,402.9999 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,471.9 +,16044,14.85,Typically Developing Children,Male,82,81,88,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1050.9998 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1734.0 +,16044,14.85,Typically Developing Children,Male,82,81,88,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3183.9993 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3221.2 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59156.6 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12338.7 +,16044,14.85,Typically Developing Children,Male,82,81,88,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3497.9993 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3740.9 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,352.4 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4682.5 +,16044,14.85,Typically Developing Children,Male,82,81,88,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1592.9996 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1806.6 +,16044,14.85,Typically Developing Children,Male,82,81,88,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4611.999 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4663.5 +,16044,14.85,Typically Developing Children,Male,82,81,88,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7979.998 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7803.7 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3735.7 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,395.5 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,26.1 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1595929.0 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,110.3 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,198952.86 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,284477.97 +,16044,14.85,Typically Developing Children,Male,82,81,88,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,356.9999 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,454.9 +,16044,14.85,Typically Developing Children,Male,82,81,88,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1107.9998 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1784.1 +,16044,14.85,Typically Developing Children,Male,82,81,88,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3401.9993 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3312.2 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62027.9 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11522.0 +,16044,14.85,Typically Developing Children,Male,82,81,88,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3468.9993 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3897.1 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,263.1 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4227.8 +,16044,14.85,Typically Developing Children,Male,82,81,88,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1568.9996 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1638.8 +,16044,14.85,Typically Developing Children,Male,82,81,88,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4590.999 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4560.3 +,16044,14.85,Typically Developing Children,Male,82,81,88,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7874.998 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7674.5 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3725.6 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,464.3 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,21.4 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55858.0 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1023772.6 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1033880.6 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1021373.0 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,399232.1 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,566945.5 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,743672.5 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10108.0 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,563.6 +,16044,14.85,Typically Developing Children,Male,82,81,88,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,194126.97 +,16044,14.85,Typically Developing Children,Male,82,81,88,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,687215.9 +,16044,14.85,Typically Developing Children,Male,82,81,88,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16044,14.85,Typically Developing Children,Male,82,81,88,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,494748.88 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,655.5 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2155.0 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16045,14.89,Typically Developing Children,Female,118,116,105,http://purl.org/nidash/fsl#,Background (mm^3),,,9324792.0 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1057299.0 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1047953.0 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1048187.6 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18718.6 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,717.5 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,571.1 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,899.4 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,332.2 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,620.0 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,703.8 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1292094.2 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,186302.25 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,252967.77 +,16045,14.89,Typically Developing Children,Female,118,116,105,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,563.00024 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,587.6 +,16045,14.89,Typically Developing Children,Female,118,116,105,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,901.0004 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1530.9 +,16045,14.89,Typically Developing Children,Female,118,116,105,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4042.002 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3949.5 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,47590.8 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11415.7 +,16045,14.89,Typically Developing Children,Female,118,116,105,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3743.0017 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3673.0 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,311.6 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2832.1 +,16045,14.89,Typically Developing Children,Female,118,116,105,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1640.0007 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1942.3 +,16045,14.89,Typically Developing Children,Female,118,116,105,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4816.0024 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5113.8 +,16045,14.89,Typically Developing Children,Female,118,116,105,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7659.0034 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8406.1 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4005.8 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,277.6 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,29.0 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1380870.0 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,147.0 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,182894.06 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,247554.58 +,16045,14.89,Typically Developing Children,Female,118,116,105,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,437.0002 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,697.0 +,16045,14.89,Typically Developing Children,Female,118,116,105,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,984.0005 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1569.8 +,16045,14.89,Typically Developing Children,Female,118,116,105,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3850.002 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3880.1 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,49173.4 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10967.3 +,16045,14.89,Typically Developing Children,Female,118,116,105,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3906.002 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3979.7 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,538.0 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2015.0 +,16045,14.89,Typically Developing Children,Female,118,116,105,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1657.0007 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1930.1 +,16045,14.89,Typically Developing Children,Female,118,116,105,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4900.0024 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5132.5 +,16045,14.89,Typically Developing Children,Female,118,116,105,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7762.004 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7976.1 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4153.0 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,334.4 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.6 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60208.0 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,931470.6 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,937400.6 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,929596.0 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,369196.3 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,500522.34 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,657722.4 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,5930.0 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,664.2 +,16045,14.89,Typically Developing Children,Female,118,116,105,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,185610.1 +,16045,14.89,Typically Developing Children,Female,118,116,105,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,620160.25 +,16045,14.89,Typically Developing Children,Female,118,116,105,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16045,14.89,Typically Developing Children,Female,118,116,105,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,465248.25 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,878.7 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1674.4 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,http://purl.org/nidash/fsl#,Background (mm^3),,,9325223.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1120777.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1109861.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1110229.4 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17687.8 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,662.6 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,632.7 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,633.9 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,445.6 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,760.9 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,799.1 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1458082.1 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,192995.94 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,266757.66 +,16046,14.99,Typically Developing Children,Female,117,129,116,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,486.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,491.7 +,16046,14.99,Typically Developing Children,Female,117,129,116,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,848.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1331.4 +,16046,14.99,Typically Developing Children,Female,117,129,116,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3635.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3620.7 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55028.9 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13581.1 +,16046,14.99,Typically Developing Children,Female,117,129,116,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3804.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3883.8 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,243.1 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3574.6 +,16046,14.99,Typically Developing Children,Female,117,129,116,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1624.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1843.2 +,16046,14.99,Typically Developing Children,Female,117,129,116,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5325.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5375.5 +,16046,14.99,Typically Developing Children,Female,117,129,116,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7688.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7447.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3812.1 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,351.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,47.5 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1522383.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,117.7 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,190474.28 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,264965.56 +,16046,14.99,Typically Developing Children,Female,117,129,116,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,447.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,505.9 +,16046,14.99,Typically Developing Children,Female,117,129,116,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,983.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1475.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3699.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3432.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57415.5 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12330.8 +,16046,14.99,Typically Developing Children,Female,117,129,116,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3763.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4141.8 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,490.7 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2986.4 +,16046,14.99,Typically Developing Children,Female,117,129,116,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1672.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1966.9 +,16046,14.99,Typically Developing Children,Female,117,129,116,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4977.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5288.9 +,16046,14.99,Typically Developing Children,Female,117,129,116,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7474.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7083.7 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3861.9 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,295.4 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.1 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56810.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,974490.44 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,982153.44 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,971553.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,383470.22 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,531723.2 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,701693.2 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7663.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,607.7 +,16046,14.99,Typically Developing Children,Female,117,129,116,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,187012.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,662464.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16046,14.99,Typically Developing Children,Female,117,129,116,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,465108.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,790.5 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1776.5 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,http://purl.org/nidash/fsl#,Background (mm^3),,,9324495.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1248195.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1235223.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1236110.8 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20888.2 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,880.7 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,661.5 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,594.1 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,471.8 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,843.8 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,872.1 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1586545.5 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,229786.67 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,278281.38 +,16047,15.15,Typically Developing Children,Female,111,109,108,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,667.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,549.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,601.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,2023.9 +,16047,15.15,Typically Developing Children,Female,111,109,108,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3988.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4025.4 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60931.2 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16296.5 +,16047,15.15,Typically Developing Children,Female,111,109,108,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3736.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4329.4 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,411.4 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3509.7 +,16047,15.15,Typically Developing Children,Female,111,109,108,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1535.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1836.8 +,16047,15.15,Typically Developing Children,Female,111,109,108,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5339.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5676.1 +,16047,15.15,Typically Developing Children,Female,111,109,108,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8066.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7931.2 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4228.9 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,325.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,28.2 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1635810.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,101.5 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,232007.94 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,277570.8 +,16047,15.15,Typically Developing Children,Female,111,109,108,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,202.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,558.2 +,16047,15.15,Typically Developing Children,Female,111,109,108,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,971.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1941.4 +,16047,15.15,Typically Developing Children,Female,111,109,108,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4492.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4201.9 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57895.1 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,21297.4 +,16047,15.15,Typically Developing Children,Female,111,109,108,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3459.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4075.6 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,426.5 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4851.3 +,16047,15.15,Typically Developing Children,Female,111,109,108,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1639.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1746.3 +,16047,15.15,Typically Developing Children,Female,111,109,108,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4976.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5556.5 +,16047,15.15,Typically Developing Children,Female,111,109,108,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7482.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8007.5 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4006.4 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,423.8 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,22.5 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62276.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1082034.8 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1091660.8 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1078972.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,461794.6 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,555852.2 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,737079.2 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9626.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1077.4 +,16047,15.15,Typically Developing Children,Female,111,109,108,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,192051.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,679323.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16047,15.15,Typically Developing Children,Female,111,109,108,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,557125.0 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,959.1 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1856.0 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,1.7 +,16048,15.56,Typically Developing Children,Male,103,102,109,http://purl.org/nidash/fsl#,Background (mm^3),,,9321730.0 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1231994.0 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1211376.0 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1211830.5 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20837.3 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,946.0 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,495.4 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,456.9 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,619.1 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,961.3 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1018.6 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1577528.5 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,223557.05 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,280130.4 +,16048,15.56,Typically Developing Children,Male,103,102,109,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,276.99982 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,476.1 +,16048,15.56,Typically Developing Children,Male,103,102,109,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,979.9993 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1659.4 +,16048,15.56,Typically Developing Children,Male,103,102,109,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3894.9973 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4276.3 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60243.9 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13702.5 +,16048,15.56,Typically Developing Children,Male,103,102,109,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3907.9973 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4292.4 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,309.5 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7875.5 +,16048,15.56,Typically Developing Children,Male,103,102,109,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1846.9987 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2413.0 +,16048,15.56,Typically Developing Children,Male,103,102,109,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5704.996 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5912.8 +,16048,15.56,Typically Developing Children,Male,103,102,109,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7921.994 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8811.6 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4584.4 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,513.2 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,31.3 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1655927.0 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,77.4 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,217573.06 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,276796.94 +,16048,15.56,Typically Developing Children,Male,103,102,109,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,299.9998 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,520.1 +,16048,15.56,Typically Developing Children,Male,103,102,109,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,707.9995 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1783.6 +,16048,15.56,Typically Developing Children,Male,103,102,109,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4270.997 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4240.0 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60386.8 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12358.1 +,16048,15.56,Typically Developing Children,Male,103,102,109,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4031.997 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4375.7 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,553.9 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8074.8 +,16048,15.56,Typically Developing Children,Male,103,102,109,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2006.9985 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2267.4 +,16048,15.56,Typically Developing Children,Male,103,102,109,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5797.996 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5947.2 +,16048,15.56,Typically Developing Children,Male,103,102,109,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8260.994 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8591.5 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4702.7 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,553.3 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,30.1 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66705.0 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1067161.5 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1084047.5 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1064270.0 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,441130.12 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,556927.3 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,745411.3 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,16886.0 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1167.0 +,16048,15.56,Typically Developing Children,Male,103,102,109,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,240557.81 +,16048,15.56,Typically Developing Children,Male,103,102,109,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,666968.5 +,16048,15.56,Typically Developing Children,Male,103,102,109,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16048,15.56,Typically Developing Children,Male,103,102,109,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,549711.6 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,625.7 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1624.5 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16049,15.69,Typically Developing Children,Female,102,96,112,http://purl.org/nidash/fsl#,Background (mm^3),,,9323247.0 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1100043.0 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1086512.0 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1086889.4 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20113.9 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,798.3 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,574.8 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,583.9 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,507.0 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,926.3 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,707.9 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1412732.4 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,201463.66 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,241746.2 +,16049,15.69,Typically Developing Children,Female,102,96,112,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,531.0001 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,512.6 +,16049,15.69,Typically Developing Children,Female,102,96,112,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1288.0004 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1659.3 +,16049,15.69,Typically Developing Children,Female,102,96,112,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3667.001 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3717.2 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56841.2 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13434.9 +,16049,15.69,Typically Developing Children,Female,102,96,112,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3996.001 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3978.9 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,270.5 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4861.7 +,16049,15.69,Typically Developing Children,Female,102,96,112,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1680.0004 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1906.7 +,16049,15.69,Typically Developing Children,Female,102,96,112,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5109.001 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4777.0 +,16049,15.69,Typically Developing Children,Female,102,96,112,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8173.002 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7805.7 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4031.9 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,441.0 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,22.3 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1471885.0 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,134.9 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,201827.34 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,244044.12 +,16049,15.69,Typically Developing Children,Female,102,96,112,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,454.00012 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,496.1 +,16049,15.69,Typically Developing Children,Female,102,96,112,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1156.0002 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1751.1 +,16049,15.69,Typically Developing Children,Female,102,96,112,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3638.001 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3546.2 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57921.0 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12873.4 +,16049,15.69,Typically Developing Children,Female,102,96,112,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3939.001 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3924.3 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,297.7 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4708.0 +,16049,15.69,Typically Developing Children,Female,102,96,112,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1769.0004 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1893.2 +,16049,15.69,Typically Developing Children,Female,102,96,112,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4966.001 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4886.9 +,16049,15.69,Typically Developing Children,Female,102,96,112,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8037.002 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7707.8 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3636.5 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,343.0 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,8.9 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57678.0 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,948396.3 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,959042.3 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,946279.0 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,403291.0 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,485790.3 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,658243.3 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10646.0 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,313.8 +,16049,15.69,Typically Developing Children,Female,102,96,112,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,194983.03 +,16049,15.69,Typically Developing Children,Female,102,96,112,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,619405.1 +,16049,15.69,Typically Developing Children,Female,102,96,112,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16049,15.69,Typically Developing Children,Female,102,96,112,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,493206.12 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,897.5 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1725.3 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9321010.0 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1386211.0 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1368106.0 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1368781.2 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22898.3 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1120.0 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,542.4 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,724.4 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,640.4 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1043.2 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,776.1 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1757419.2 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,253854.72 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,312260.9 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,709.9995 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,654.8 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1037.9993 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1702.9 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3854.9973 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4089.9 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,66620.3 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,17352.3 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4239.997 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4059.8 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,226.1 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4812.7 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1549.9989 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2193.8 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5127.996 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5368.8 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8763.994 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9157.6 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4325.2 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,285.3 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,17.7 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1819758.0 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,149.2 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,254011.62 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,313742.0 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,481.99966 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,591.6 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1035.9993 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1892.4 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4425.997 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4480.7 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,69727.5 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,16748.0 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3933.997 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4002.6 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,419.6 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8693.0 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1850.9987 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2040.9 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5483.996 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5762.1 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8132.994 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8304.8 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4333.5 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,563.1 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,21.9 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64534.0 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1200467.2 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1215145.2 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1197618.0 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,507866.34 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,626002.9 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,827579.9 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14678.0 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1433.9 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,196121.88 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,746323.5 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16050,15.78,Typically Developing Children,Male,108,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,603869.6 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,735.3 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1598.3 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9325090.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1103981.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1091713.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1092026.2 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19116.5 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,787.9 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,758.2 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,712.7 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,485.3 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,969.7 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,751.9 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1426437.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,192160.64 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,252554.7 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,662.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,597.8 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1018.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1326.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3728.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4356.1 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58201.7 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12343.6 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3443.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4141.3 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,258.7 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4058.4 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1671.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1917.1 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4725.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5012.8 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7658.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7819.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4044.5 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,432.6 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,15.7 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1500143.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,148.5 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,193033.7 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,252612.16 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,437.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,566.9 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1054.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1588.1 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4299.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4460.4 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59856.7 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11918.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4237.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4414.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,536.4 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3798.2 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1679.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1818.4 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4695.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4892.9 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7252.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7379.4 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4008.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,380.1 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,20.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59810.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,951810.2 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,960993.2 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,949733.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,385194.34 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,505166.88 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,683289.9 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9183.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,473.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,207115.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,647784.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16051,15.88,Typically Developing Children,Female,99,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,457692.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,775.9 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1727.6 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,http://purl.org/nidash/fsl#,Background (mm^3),,,9322350.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1309636.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1294144.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1294581.6 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22858.4 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,750.3 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,637.5 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,545.5 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,548.3 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1018.8 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,833.3 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1681950.6 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,240428.3 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,290337.75 +,16052,15.91,Typically Developing Children,Male,106,116,110,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,534.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,564.6 +,16052,15.91,Typically Developing Children,Male,106,116,110,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1075.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1849.8 +,16052,15.91,Typically Developing Children,Male,106,116,110,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3613.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3770.5 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,67336.2 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16116.7 +,16052,15.91,Typically Developing Children,Male,106,116,110,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3631.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4513.3 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,447.8 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5186.2 +,16052,15.91,Typically Developing Children,Male,106,116,110,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1925.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2113.5 +,16052,15.91,Typically Developing Children,Male,106,116,110,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5989.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6078.1 +,16052,15.91,Typically Developing Children,Male,106,116,110,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8254.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9183.9 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4626.7 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,547.7 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,41.1 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1713113.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,162.6 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,240592.75 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,291317.78 +,16052,15.91,Typically Developing Children,Male,106,116,110,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,501.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,595.7 +,16052,15.91,Typically Developing Children,Male,106,116,110,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,878.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1953.8 +,16052,15.91,Typically Developing Children,Male,106,116,110,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3604.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3631.4 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,67205.4 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15021.1 +,16052,15.91,Typically Developing Children,Male,106,116,110,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3585.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4281.3 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,140.4 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5620.5 +,16052,15.91,Typically Developing Children,Male,106,116,110,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1853.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2208.8 +,16052,15.91,Typically Developing Children,Male,106,116,110,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5892.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6086.9 +,16052,15.91,Typically Developing Children,Male,106,116,110,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7964.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9017.6 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4215.6 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,533.3 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,23.5 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66143.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1131348.6 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1143523.6 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1128273.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,481021.03 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,581655.56 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,782920.56 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12175.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1510.5 +,16052,15.91,Typically Developing Children,Male,106,116,110,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,210694.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,723869.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16052,15.91,Typically Developing Children,Male,106,116,110,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,578831.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,810.3 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1157.9 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,http://purl.org/nidash/fsl#,Background (mm^3),,,9322830.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1314645.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1303269.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1304088.1 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,23953.5 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,643.5 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,616.8 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,503.6 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,484.2 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,755.7 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,955.8 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1692358.1 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,227015.06 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,307938.1 +,16053,15.92,Typically Developing Children,Male,120,116,126,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,375.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,792.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1216.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1989.4 +,16053,15.92,Typically Developing Children,Male,120,116,126,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3574.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4208.8 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,65857.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15617.3 +,16053,15.92,Typically Developing Children,Male,120,116,126,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4272.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4817.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,259.2 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3188.7 +,16053,15.92,Typically Developing Children,Male,120,116,126,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1823.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2556.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6450.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,7256.5 +,16053,15.92,Typically Developing Children,Male,120,116,126,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9076.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9500.9 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,5205.2 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,457.4 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,74.2 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1705248.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,168.9 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,222503.17 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,308952.84 +,16053,15.92,Typically Developing Children,Male,120,116,126,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,269.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,716.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,903.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2131.9 +,16053,15.92,Typically Developing Children,Male,120,116,126,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2976.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4579.8 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,66871.8 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15499.2 +,16053,15.92,Typically Developing Children,Male,120,116,126,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3778.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4690.6 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,199.3 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4100.4 +,16053,15.92,Typically Developing Children,Male,120,116,126,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1793.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2577.7 +,16053,15.92,Typically Developing Children,Male,120,116,126,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4396.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,7365.2 +,16053,15.92,Typically Developing Children,Male,120,116,126,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7917.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9427.2 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4899.9 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,506.8 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,50.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,74384.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1142708.1 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1151208.1 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1139905.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,449518.22 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,616890.94 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,824411.94 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8500.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1543.3 +,16053,15.92,Typically Developing Children,Male,120,116,126,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,192443.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,766311.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16053,15.92,Typically Developing Children,Male,120,116,126,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,552003.0 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,986.5 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2581.2 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9316660.0 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1337658.0 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1313856.0 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1314673.6 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,23887.9 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,907.3 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,606.8 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,557.4 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,559.5 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,875.9 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1018.7 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1788399.5 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,234568.33 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,308956.12 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,549.0001 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,630.2 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1072.0002 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1805.9 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4193.001 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4457.6 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63742.3 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16203.7 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4399.001 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4630.3 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,268.0 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8811.1 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1943.0005 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2370.1 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5831.0015 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5982.7 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9361.002 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9275.9 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4635.6 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,593.5 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,24.2 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1788078.0 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,200.8 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,232166.05 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,307208.1 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,403.0001 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,688.8 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1660.0004 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1971.5 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4619.001 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4404.7 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,67768.5 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15681.5 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4454.001 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4676.9 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,281.4 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8709.8 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1968.0005 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2181.9 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5710.0015 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5617.0 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8828.002 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9118.8 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4574.1 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,688.0 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,31.3 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68496.0 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1154114.6 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1173371.6 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1150439.0 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,466734.38 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,616164.25 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,816853.25 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,19257.0 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,587.3 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,238379.08 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,767778.25 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16054,16.05,Typically Developing Children,Male,105,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,561211.1 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,532.1 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1560.3 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16055,16.16,Typically Developing Children,Male,113,109,105,http://purl.org/nidash/fsl#,Background (mm^3),,,9321499.0 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1276282.0 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1263305.0 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1263695.0 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22896.6 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,971.9 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,676.9 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,675.0 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,504.6 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1005.6 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,701.5 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1613091.0 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,223341.36 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,296061.53 +,16055,16.16,Typically Developing Children,Male,113,109,105,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,434.99994 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,642.2 +,16055,16.16,Typically Developing Children,Male,113,109,105,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1104.9999 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1676.1 +,16055,16.16,Typically Developing Children,Male,113,109,105,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3846.9995 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4121.6 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59382.9 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15855.1 +,16055,16.16,Typically Developing Children,Male,113,109,105,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4003.9995 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4348.6 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,324.0 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5319.2 +,16055,16.16,Typically Developing Children,Male,113,109,105,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1568.9998 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2423.0 +,16055,16.16,Typically Developing Children,Male,113,109,105,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5014.9995 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5686.4 +,16055,16.16,Typically Developing Children,Male,113,109,105,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8785.999 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,10071.1 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4366.3 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,345.0 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,57.0 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1698511.0 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,129.6 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,225624.4 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,301658.7 +,16055,16.16,Typically Developing Children,Male,113,109,105,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,243.99997 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,617.2 +,16055,16.16,Typically Developing Children,Male,113,109,105,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1260.9999 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1796.1 +,16055,16.16,Typically Developing Children,Male,113,109,105,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4280.9995 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4319.4 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59049.9 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13933.6 +,16055,16.16,Typically Developing Children,Male,113,109,105,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3657.9995 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4314.8 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,224.8 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4156.4 +,16055,16.16,Typically Developing Children,Male,113,109,105,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1790.9998 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2035.6 +,16055,16.16,Typically Developing Children,Male,113,109,105,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5395.9995 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5480.4 +,16055,16.16,Typically Developing Children,Male,113,109,105,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8755.999 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,10311.2 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4419.3 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,414.7 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,25.7 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68774.0 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1117983.0 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1128350.0 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1115004.0 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,448965.75 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,597720.2 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,785750.2 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10367.0 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1125.9 +,16055,16.16,Typically Developing Children,Male,113,109,105,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,221327.97 +,16055,16.16,Typically Developing Children,Male,113,109,105,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,738575.9 +,16055,16.16,Typically Developing Children,Male,113,109,105,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16055,16.16,Typically Developing Children,Male,113,109,105,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,565024.9 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,820.0 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2736.1 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9324577.0 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1122055.0 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1103906.0 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1103736.4 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19341.6 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,918.9 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,560.7 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,662.2 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,612.7 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1054.4 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,862.1 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1455590.4 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,200093.78 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,258528.83 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,574.9996 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,573.9 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1152.9991 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1529.9 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4431.997 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4621.4 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52095.1 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12193.9 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3498.9976 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3862.3 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,315.7 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7149.5 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1775.9988 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1931.9 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4698.9966 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4809.3 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7726.9946 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7627.9 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4160.1 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,331.0 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,12.7 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1557011.0 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,128.6 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,198542.86 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,257584.95 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,550.99963 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,587.3 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1132.9991 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1550.1 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2962.9978 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4527.2 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53244.9 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12315.1 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4192.997 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4286.1 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,213.5 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5748.6 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1719.9988 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1815.2 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4976.9966 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4717.9 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7665.9946 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7598.5 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3923.7 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,446.5 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.5 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59824.0 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,976244.4 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,990060.4 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,974638.0 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,398636.62 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,516113.78 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,681684.75 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13816.0 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,643.4 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,211148.84 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,620043.5 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16056,16.28,Typically Developing Children,Female,102,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,501025.62 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,717.7 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1327.1 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9324758.0 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1178111.0 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1157138.0 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1157006.2 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20971.4 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1189.1 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,514.2 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,536.0 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,654.3 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1210.3 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,787.7 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1552289.2 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,215507.9 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,259902.69 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,528.00024 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,441.9 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1169.0006 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1452.2 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3761.0017 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4080.5 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58086.8 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14721.0 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3648.0017 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3690.1 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,312.5 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7217.2 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1732.0009 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1918.8 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4118.002 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4154.9 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8501.004 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8774.3 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3989.4 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,420.5 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,12.2 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1551376.0 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,108.6 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,216647.0 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,260632.62 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,380.00018 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,517.6 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,932.0004 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1551.7 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3919.002 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4203.4 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58298.0 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14490.3 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3846.002 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3638.3 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,345.1 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,9504.0 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1794.0009 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1915.2 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4508.002 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4356.6 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8058.004 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8351.4 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4087.5 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,448.5 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,20.2 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58800.0 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1014257.2 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1032376.2 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1011533.0 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,432154.9 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,520535.3 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,696529.3 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,18119.0 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,928.7 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,185901.1 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,667735.4 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16057,16.74,Typically Developing Children,Female,90,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,520883.25 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1207.2 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2831.3 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16058,17.01,Typically Developing Children,Female,116,129,109,http://purl.org/nidash/fsl#,Background (mm^3),,,9319192.0 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1183209.0 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1165008.0 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1165584.1 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19764.8 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,699.4 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,538.7 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,423.0 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,442.6 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,788.9 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,820.6 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1582967.5 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,211141.3 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,269069.12 +,16058,17.01,Typically Developing Children,Female,116,129,109,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,563.99976 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,521.7 +,16058,17.01,Typically Developing Children,Female,116,129,109,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1442.9993 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1617.4 +,16058,17.01,Typically Developing Children,Female,116,129,109,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4365.998 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4417.7 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56830.6 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14152.7 +,16058,17.01,Typically Developing Children,Female,116,129,109,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4506.998 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4467.0 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,471.4 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5941.3 +,16058,17.01,Typically Developing Children,Female,116,129,109,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1791.9991 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2000.7 +,16058,17.01,Typically Developing Children,Female,116,129,109,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5819.997 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5390.8 +,16058,17.01,Typically Developing Children,Female,116,129,109,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7943.996 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8200.7 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4384.3 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,448.9 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,52.8 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1621820.0 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,119.5 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,210462.75 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,269509.94 +,16058,17.01,Typically Developing Children,Female,116,129,109,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,464.9998 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,558.0 +,16058,17.01,Typically Developing Children,Female,116,129,109,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1300.9994 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1704.5 +,16058,17.01,Typically Developing Children,Female,116,129,109,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4397.998 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4380.7 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58200.2 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12901.3 +,16058,17.01,Typically Developing Children,Female,116,129,109,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4891.9976 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4678.1 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,303.9 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6008.2 +,16058,17.01,Typically Developing Children,Female,116,129,109,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1839.9991 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1981.6 +,16058,17.01,Typically Developing Children,Female,116,129,109,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5475.9976 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5438.7 +,16058,17.01,Typically Developing Children,Female,116,129,109,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7643.9966 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8033.6 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4286.0 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,483.3 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,31.4 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63477.0 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1025732.1 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1039124.1 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1023032.0 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,421604.06 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,538579.06 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,717613.06 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13392.0 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,445.6 +,16058,17.01,Typically Developing Children,Female,116,129,109,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,216170.9 +,16058,17.01,Typically Developing Children,Female,116,129,109,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,665356.6 +,16058,17.01,Typically Developing Children,Female,116,129,109,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16058,17.01,Typically Developing Children,Female,116,129,109,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,503164.75 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,639.5 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1180.6 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16059,17.13,Typically Developing Children,Female,102,119,102,http://purl.org/nidash/fsl#,Background (mm^3),,,9322803.0 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1271892.0 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1261790.0 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1262497.9 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19441.3 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,790.6 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,720.8 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,588.7 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,490.6 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,924.5 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,829.7 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1597059.1 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,235828.53 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,302308.78 +,16059,17.13,Typically Developing Children,Female,102,119,102,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,761.99976 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,554.7 +,16059,17.13,Typically Developing Children,Female,102,119,102,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,938.99963 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1542.6 +,16059,17.13,Typically Developing Children,Female,102,119,102,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3381.9988 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3301.3 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52203.9 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12318.2 +,16059,17.13,Typically Developing Children,Female,102,119,102,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3854.9985 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3863.3 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,243.6 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3711.9 +,16059,17.13,Typically Developing Children,Female,102,119,102,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1457.9995 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2142.5 +,16059,17.13,Typically Developing Children,Female,102,119,102,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5333.998 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5059.5 +,16059,17.13,Typically Developing Children,Female,102,119,102,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8832.997 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9136.0 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4427.9 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,302.8 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,22.9 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1714658.0 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,86.8 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,232925.1 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,301443.47 +,16059,17.13,Typically Developing Children,Female,102,119,102,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,390.99985 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,630.8 +,16059,17.13,Typically Developing Children,Female,102,119,102,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,909.9997 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1750.8 +,16059,17.13,Typically Developing Children,Female,102,119,102,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3573.9988 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3473.8 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,52311.6 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11392.5 +,16059,17.13,Typically Developing Children,Female,102,119,102,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3559.9988 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4070.8 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,238.8 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3052.1 +,16059,17.13,Typically Developing Children,Female,102,119,102,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1736.9994 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2157.8 +,16059,17.13,Typically Developing Children,Female,102,119,102,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5527.998 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5460.9 +,16059,17.13,Typically Developing Children,Female,102,119,102,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8578.997 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8383.5 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4238.7 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,410.4 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,39.4 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61907.0 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1136619.9 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1144148.9 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1133663.0 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,468753.62 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,603752.25 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,770832.25 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7529.0 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,508.4 +,16059,17.13,Typically Developing Children,Female,102,119,102,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,202630.94 +,16059,17.13,Typically Developing Children,Female,102,119,102,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,711218.75 +,16059,17.13,Typically Developing Children,Female,102,119,102,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16059,17.13,Typically Developing Children,Female,102,119,102,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,560707.75 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1034.6 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2157.5 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16060,17.16,Typically Developing Children,Male,113,119,122,http://purl.org/nidash/fsl#,Background (mm^3),,,9322778.0 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1349141.0 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1327938.0 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1328597.2 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19705.7 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1101.1 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,689.6 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,853.1 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,677.1 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1328.4 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1046.6 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1717285.6 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,254381.06 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,310508.06 +,16060,17.16,Typically Developing Children,Male,113,119,122,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,357.9999 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,554.4 +,16060,17.16,Typically Developing Children,Male,113,119,122,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1208.9998 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1693.3 +,16060,17.16,Typically Developing Children,Male,113,119,122,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3435.9993 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4003.6 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53432.6 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13533.5 +,16060,17.16,Typically Developing Children,Male,113,119,122,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4106.999 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4493.5 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,264.3 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8392.2 +,16060,17.16,Typically Developing Children,Male,113,119,122,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1764.9996 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2191.5 +,16060,17.16,Typically Developing Children,Male,113,119,122,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4667.999 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5144.8 +,16060,17.16,Typically Developing Children,Male,113,119,122,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8097.998 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8245.1 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4486.6 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,655.9 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,23.6 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1823873.0 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,199.6 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,255321.2 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,311933.84 +,16060,17.16,Typically Developing Children,Male,113,119,122,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,477.99988 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,549.0 +,16060,17.16,Typically Developing Children,Male,113,119,122,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1518.9996 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1997.1 +,16060,17.16,Typically Developing Children,Male,113,119,122,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3525.9993 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4134.9 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,52691.5 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12813.6 +,16060,17.16,Typically Developing Children,Male,113,119,122,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4676.999 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4738.0 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,412.7 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6990.6 +,16060,17.16,Typically Developing Children,Male,113,119,122,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1825.9995 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2013.7 +,16060,17.16,Typically Developing Children,Male,113,119,122,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5119.999 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5023.6 +,16060,17.16,Typically Developing Children,Male,113,119,122,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8080.998 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8392.3 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4089.0 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,599.8 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,21.0 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63592.0 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1198128.2 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1215159.2 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1194920.0 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,509702.25 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,622441.94 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,793452.94 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,17031.0 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,595.1 +,16060,17.16,Typically Developing Children,Male,113,119,122,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,245399.94 +,16060,17.16,Typically Developing Children,Male,113,119,122,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,742070.9 +,16060,17.16,Typically Developing Children,Male,113,119,122,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16060,17.16,Typically Developing Children,Male,113,119,122,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,580897.9 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,869.0 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2186.8 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9316370.0 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1361022.0 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1332979.0 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1332737.1 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,23945.3 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1109.5 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,533.7 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,584.8 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,679.0 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1177.6 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,798.9 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1823436.4 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,258396.89 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,295359.6 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,576.9996 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,571.1 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1415.999 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1785.5 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3982.997 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3718.3 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,65795.3 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16982.0 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3816.9973 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4189.4 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,357.8 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,14257.0 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2134.9985 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2417.2 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5876.9956 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5633.8 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9163.993 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9122.0 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4749.1 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,448.5 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,48.0 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1860919.0 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,216.2 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,256523.2 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,292485.47 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,475.99966 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,640.4 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1560.9989 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1712.3 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4171.997 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3958.6 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,65087.4 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15706.6 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4378.997 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4505.0 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,402.9 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8527.6 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2137.9985 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2294.7 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6009.9956 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5720.4 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9565.993 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9403.0 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4602.1 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,516.4 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,22.0 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66493.0 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1171412.1 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1195626.1 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1169368.0 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,514920.1 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,587845.06 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,786205.06 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,24214.0 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,986.2 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,253928.81 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,709151.5 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16061,17.23,Typically Developing Children,Male,90,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,609982.6 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,624.8 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1028.8 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9320984.0 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1286831.0 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1274536.0 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1274518.0 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,23907.7 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,861.1 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,868.8 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,629.0 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,579.7 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,877.3 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,753.4 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1729059.5 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,241609.97 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,284531.62 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,610.00073 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,648.5 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1139.0013 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1624.6 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4280.005 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4289.1 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61778.4 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15684.3 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4757.006 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4399.7 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,410.0 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4199.6 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1816.0022 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2037.4 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5399.0063 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5856.6 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8410.01 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8323.7 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4673.8 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,341.2 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,27.1 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1728882.0 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,178.1 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,242704.06 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,284956.38 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,493.00058 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,612.7 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,912.0011 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1748.6 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4171.005 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4276.0 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64121.0 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15357.1 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3987.0046 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4430.0 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,220.6 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4763.6 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1780.0021 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2106.2 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5255.0063 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5717.1 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7666.0093 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8107.1 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4358.2 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,335.3 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,20.6 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64099.0 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1120595.0 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1130543.0 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1117765.0 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,484314.03 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,569488.0 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,759741.0 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9948.0 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1122.8 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,212674.25 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,714580.8 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16062,17.44,Typically Developing Children,Female,112,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,581409.6 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1392.9 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1679.7 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16063,17.46,Typically Developing Children,Male,101,111,100,http://purl.org/nidash/fsl#,Background (mm^3),,,9318068.0 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1337821.0 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1318390.0 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1318485.4 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,23872.4 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,851.0 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,421.7 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,431.9 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,415.4 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,771.5 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1007.8 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1820218.0 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,238967.11 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,294176.97 +,16063,17.46,Typically Developing Children,Male,101,111,100,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,703.99963 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,572.5 +,16063,17.46,Typically Developing Children,Male,101,111,100,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1333.9993 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1753.6 +,16063,17.46,Typically Developing Children,Male,101,111,100,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4123.9976 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4187.2 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,76006.7 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,19354.6 +,16063,17.46,Typically Developing Children,Male,101,111,100,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4220.9976 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4328.5 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,505.6 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7636.1 +,16063,17.46,Typically Developing Children,Male,101,111,100,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1803.999 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2362.8 +,16063,17.46,Typically Developing Children,Male,101,111,100,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5121.997 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5393.2 +,16063,17.46,Typically Developing Children,Male,101,111,100,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9035.995 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8953.1 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4844.0 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,481.9 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,7.5 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1844781.0 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,219.8 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,238015.61 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,291991.72 +,16063,17.46,Typically Developing Children,Male,101,111,100,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,549.9997 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,562.0 +,16063,17.46,Typically Developing Children,Male,101,111,100,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1669.9991 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1893.4 +,16063,17.46,Typically Developing Children,Male,101,111,100,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4325.9976 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4264.9 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,76468.6 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,17258.8 +,16063,17.46,Typically Developing Children,Male,101,111,100,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4078.9978 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4309.4 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,564.0 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6040.6 +,16063,17.46,Typically Developing Children,Male,101,111,100,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2009.9989 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2096.2 +,16063,17.46,Typically Developing Children,Male,101,111,100,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5341.997 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5312.1 +,16063,17.46,Typically Developing Children,Male,101,111,100,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9252.995 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8928.5 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4807.1 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,543.0 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,17.4 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66285.0 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1132494.4 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1147887.4 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1129142.0 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,476982.72 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,586168.7 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,805644.7 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15393.0 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,830.4 +,16063,17.46,Typically Developing Children,Male,101,111,100,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,244751.86 +,16063,17.46,Typically Developing Children,Male,101,111,100,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,728739.6 +,16063,17.46,Typically Developing Children,Male,101,111,100,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16063,17.46,Typically Developing Children,Male,101,111,100,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,586214.7 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,568.6 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1908.5 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9320700.0 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1224700.0 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1209352.0 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1209731.5 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20842.5 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,902.8 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,866.6 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,711.4 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,552.6 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,944.1 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,786.4 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1657675.9 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,225702.14 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,273185.78 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,562.9996 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,613.8 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1389.999 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1409.3 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3921.9973 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4180.3 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58857.6 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13729.4 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3965.997 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3969.3 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,378.7 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6227.7 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1813.9987 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2002.2 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5186.996 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5245.2 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8369.994 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8806.4 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3977.6 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,643.5 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,21.3 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1693590.0 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,142.9 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,227558.53 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,276691.03 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,416.9997 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,608.3 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,968.9993 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1738.1 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4159.997 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4075.1 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60093.6 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12343.7 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4349.997 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4145.0 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,234.6 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4596.4 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1936.9987 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1924.9 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5494.996 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5117.8 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8400.994 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8067.8 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4023.6 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,623.8 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.9 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61475.0 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1067113.5 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1079254.5 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1064125.0 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,453260.7 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,549876.8 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,731333.8 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12141.0 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,552.8 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,233622.84 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,684271.5 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16064,17.49,Typically Developing Children,Male,109,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,536011.6 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,666.2 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1703.2 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9327216.0 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1067975.0 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1051482.0 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1051876.0 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18850.1 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,851.1 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,425.5 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,488.2 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,610.0 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,975.9 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,737.3 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1399025.1 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,191464.1 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,235592.56 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,589.9995 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,509.0 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,998.99915 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1393.7 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3420.997 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3592.1 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55387.9 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15198.9 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3075.9973 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3512.5 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,183.0 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5550.3 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1303.9989 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1833.7 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4533.996 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4702.1 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7843.9937 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7328.2 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3798.6 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,221.5 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.0 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1449302.0 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,111.0 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,191388.38 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,237018.02 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,287.99976 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,513.9 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1122.999 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1657.6 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3857.9968 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3775.7 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56596.5 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13690.5 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3519.997 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3679.6 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,240.8 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6971.6 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1786.9985 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1870.6 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4884.996 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4951.9 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7194.994 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7302.5 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3603.9 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,483.4 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,21.2 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55549.0 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,913416.06 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,926821.06 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,910555.0 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,382852.47 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,472610.56 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,641021.56 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13405.0 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,352.4 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,188077.84 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,597230.5 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16065,17.84,Typically Developing Children,Female,108,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,457801.62 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,543.1 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1156.0 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16066,17.86,Typically Developing Children,Female,107,105,106,http://purl.org/nidash/fsl#,Background (mm^3),,,9323710.0 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1192132.0 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1180473.0 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1180629.5 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19839.4 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,822.9 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,753.9 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,634.9 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,614.4 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,877.7 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,609.5 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1540086.8 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,220980.28 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,267868.47 +,16066,17.86,Typically Developing Children,Female,107,105,106,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,509.99945 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,576.1 +,16066,17.86,Typically Developing Children,Female,107,105,106,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1253.9987 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1836.5 +,16066,17.86,Typically Developing Children,Female,107,105,106,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3660.996 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3551.5 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56023.5 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15148.2 +,16066,17.86,Typically Developing Children,Female,107,105,106,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3756.9958 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3914.3 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,249.3 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5420.1 +,16066,17.86,Typically Developing Children,Female,107,105,106,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1406.9985 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1940.4 +,16066,17.86,Typically Developing Children,Female,107,105,106,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5087.9946 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5154.9 +,16066,17.86,Typically Developing Children,Female,107,105,106,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7782.9917 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7568.2 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3987.9 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,372.5 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,57.2 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1568923.0 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,79.9 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,221402.58 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,268979.16 +,16066,17.86,Typically Developing Children,Female,107,105,106,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,434.99954 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,623.2 +,16066,17.86,Typically Developing Children,Female,107,105,106,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1072.9989 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2005.2 +,16066,17.86,Typically Developing Children,Female,107,105,106,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3762.9958 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3623.3 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56250.0 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14549.8 +,16066,17.86,Typically Developing Children,Female,107,105,106,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4075.9956 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4056.8 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,197.4 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3184.4 +,16066,17.86,Typically Developing Children,Female,107,105,106,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1699.9982 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1890.2 +,16066,17.86,Typically Developing Children,Female,107,105,106,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5356.994 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5245.5 +,16066,17.86,Typically Developing Children,Female,107,105,106,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8063.991 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7705.7 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3966.1 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,311.0 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,27.3 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59168.0 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1041037.5 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1050433.5 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1038230.0 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,442382.88 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,536847.6 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,709126.6 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9396.0 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,869.2 +,16066,17.86,Typically Developing Children,Female,107,105,106,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,181715.81 +,16066,17.86,Typically Developing Children,Female,107,105,106,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,670775.25 +,16066,17.86,Typically Developing Children,Female,107,105,106,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16066,17.86,Typically Developing Children,Female,107,105,106,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,524144.44 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,801.8 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1513.7 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9320113.0 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1294635.0 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1283062.0 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1283878.9 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19814.5 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,832.5 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,726.5 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,692.9 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,413.9 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,814.8 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,976.8 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1665878.1 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,221993.86 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,312318.72 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,733.00055 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,743.8 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1142.0009 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1672.5 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4330.003 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4169.2 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63295.5 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14164.3 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4213.003 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4292.1 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,284.4 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4558.8 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1818.0013 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2011.8 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5772.004 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5195.6 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8961.007 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8663.9 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4217.0 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,267.5 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,14.2 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1737697.0 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,171.0 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,221510.78 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,310473.44 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,646.0005 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,712.1 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,943.0007 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1946.5 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2870.002 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4297.0 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63781.3 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13318.2 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4056.003 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4560.4 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,255.8 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2874.4 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1795.0013 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1885.7 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5679.004 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5586.1 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8584.006 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8010.4 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4207.8 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,450.6 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,40.3 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63393.0 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1132060.9 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1140377.9 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1128748.0 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,443504.66 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,622792.2 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,814082.2 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8317.0 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,753.1 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,223556.16 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,767383.5 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16067,17.91,Typically Developing Children,Female,96,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,536901.4 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,541.5 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1765.3 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9322183.0 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1143796.0 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1127836.0 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1128337.0 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20452.1 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,985.2 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,679.1 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,559.3 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,616.3 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1075.9 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,884.8 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1491923.1 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,210826.67 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,254188.42 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,668.0005 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,630.0 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1357.001 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1436.1 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4551.0034 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4580.7 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54986.1 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14727.2 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3392.0024 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3534.3 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,355.5 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5469.2 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1797.0013 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2146.5 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4911.0034 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5306.9 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7799.0054 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7643.5 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4210.1 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,507.8 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.3 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1526298.0 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,121.6 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,210104.62 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,252520.33 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,488.00034 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,671.0 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1352.001 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1580.1 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4564.0034 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4487.2 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57606.3 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14078.7 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3546.0024 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3471.1 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,168.4 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6043.2 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1862.0013 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2023.7 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5333.004 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5367.6 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7852.006 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7570.7 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3930.2 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,554.2 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,8.8 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59918.0 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,989535.06 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1002396.06 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,986954.0 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,420931.3 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,506708.75 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,679470.75 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12861.0 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,424.2 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,182524.12 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,640684.5 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16068,17.96,Typically Developing Children,Female,131,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,519482.38 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,567.4 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,856.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,http://purl.org/nidash/fsl#,Background (mm^3),,,9322219.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1156814.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1141966.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1142538.5 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20719.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,924.1 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,684.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,623.1 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,718.7 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1244.3 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,738.8 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1477319.5 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,216640.9 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,251368.44 +,16069,18.14,Typically Developing Children,Female,118,118,119,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,693.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,626.8 +,16069,18.14,Typically Developing Children,Female,118,118,119,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1094.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1528.6 +,16069,18.14,Typically Developing Children,Female,118,118,119,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3719.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3666.8 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57453.5 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15090.2 +,16069,18.14,Typically Developing Children,Female,118,118,119,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3585.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3832.3 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,258.9 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6770.6 +,16069,18.14,Typically Developing Children,Female,118,118,119,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1808.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2109.9 +,16069,18.14,Typically Developing Children,Female,118,118,119,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5598.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5655.7 +,16069,18.14,Typically Developing Children,Female,118,118,119,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8380.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8055.8 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4257.4 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,564.6 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,44.6 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1541266.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,132.8 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,215663.62 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,249707.55 +,16069,18.14,Typically Developing Children,Female,118,118,119,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,509.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,637.3 +,16069,18.14,Typically Developing Children,Female,118,118,119,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1443.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1893.4 +,16069,18.14,Typically Developing Children,Female,118,118,119,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3905.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3892.1 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59928.5 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14829.7 +,16069,18.14,Typically Developing Children,Female,118,118,119,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3420.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4064.1 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,257.8 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4824.2 +,16069,18.14,Typically Developing Children,Female,118,118,119,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1896.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1961.8 +,16069,18.14,Typically Developing Children,Female,118,118,119,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5516.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5374.7 +,16069,18.14,Typically Developing Children,Female,118,118,119,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7863.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8057.9 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4466.3 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,520.5 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,25.2 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61788.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,997638.5 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1010459.5 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,994508.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,432304.53 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,501075.97 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,680953.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12821.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,753.1 +,16069,18.14,Typically Developing Children,Female,118,118,119,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,190191.02 +,16069,18.14,Typically Developing Children,Female,118,118,119,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,628329.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16069,18.14,Typically Developing Children,Female,118,118,119,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,526952.0 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,502.5 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1112.2 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9325657.0 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1049835.0 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1038150.0 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1038298.44 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20344.9 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,787.6 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,609.6 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,542.8 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,489.5 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,861.2 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,559.8 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1349495.8 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,190341.9 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,231651.36 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,573.9996 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,530.0 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1300.999 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1518.8 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3857.9973 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3682.1 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57188.2 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15125.5 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3410.9976 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4063.7 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,195.4 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3975.5 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1682.9988 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2036.1 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4574.9966 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4890.7 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7526.9946 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7505.5 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4014.7 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,339.5 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,49.7 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1424367.0 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,109.9 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,188616.98 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,227262.22 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,496.99963 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,513.7 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1012.99927 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1745.0 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4103.997 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3919.3 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56681.9 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13911.4 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3596.9973 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4220.2 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,240.3 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4761.9 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1796.9987 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2135.6 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4557.9966 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4555.6 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7488.9946 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7273.6 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3998.6 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,333.8 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,27.5 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57786.0 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,897571.44 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,907147.44 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,895455.0 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,378958.88 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,458913.56 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,630898.56 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9576.0 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,532.5 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,172863.88 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,582180.6 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16070,18.31,Typically Developing Children,Female,92,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,473130.7 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,990.2 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1905.3 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9332978.0 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,973149.0 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,950985.0 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,950933.75 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15966.1 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,704.8 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,425.6 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,444.2 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,405.6 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,732.6 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1106.2 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1316139.2 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,163331.28 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,230570.1 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,409.99957 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,395.9 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,804.99915 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1454.9 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2968.9968 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3117.5 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,49009.6 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11642.8 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3813.9958 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3827.5 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,384.6 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,9291.3 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1424.9984 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1445.0 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,3265.9966 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,3233.8 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6767.9927 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6482.3 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3521.1 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,736.3 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,9.9 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1380922.0 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,106.9 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,161662.47 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,228399.9 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,334.99963 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,489.0 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1014.9989 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1582.1 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3003.9968 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3087.4 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,48362.6 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10491.6 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3605.996 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3695.6 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,401.6 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6807.3 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1421.9985 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1373.3 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,3116.9966 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,3233.5 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6703.9927 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6338.3 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3341.6 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,760.2 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,17.7 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,48210.0 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,833827.75 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,852022.75 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,832132.0 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,324993.75 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,458970.0 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,605036.0 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,18195.0 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,475.0 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,223496.77 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,577015.4 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16071,18.33,Typically Developing Children,Female,111,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,398932.56 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,919.4 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2067.3 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16072,18.43,Typically Developing Children,Male,123,103,125,http://purl.org/nidash/fsl#,Background (mm^3),,,9313924.0 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1277044.0 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1256726.0 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1255877.5 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,24003.5 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,811.9 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,437.9 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,403.7 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,559.2 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1004.3 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1180.7 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1749144.0 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,235134.4 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,285572.16 +,16072,18.43,Typically Developing Children,Male,123,103,125,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,708.0002 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,731.6 +,16072,18.43,Typically Developing Children,Male,123,103,125,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1659.0004 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1672.8 +,16072,18.43,Typically Developing Children,Male,123,103,125,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,5043.001 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,5281.8 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57716.5 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15755.7 +,16072,18.43,Typically Developing Children,Male,123,103,125,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4103.001 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4015.1 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,383.0 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7137.9 +,16072,18.43,Typically Developing Children,Male,123,103,125,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1960.0005 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2439.3 +,16072,18.43,Typically Developing Children,Male,123,103,125,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6407.0015 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6890.5 +,16072,18.43,Typically Developing Children,Male,123,103,125,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9184.002 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9356.6 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4671.7 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,634.0 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,43.8 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1758471.0 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,173.3 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,231757.06 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,281674.88 +,16072,18.43,Typically Developing Children,Male,123,103,125,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,587.0001 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,807.6 +,16072,18.43,Typically Developing Children,Male,123,103,125,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1445.0004 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2014.3 +,16072,18.43,Typically Developing Children,Male,123,103,125,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5175.0015 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5250.4 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59835.1 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14495.2 +,16072,18.43,Typically Developing Children,Male,123,103,125,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4455.001 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4418.6 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,387.6 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7323.4 +,16072,18.43,Typically Developing Children,Male,123,103,125,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2128.0005 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2434.1 +,16072,18.43,Typically Developing Children,Male,123,103,125,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5952.0015 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,7071.0 +,16072,18.43,Typically Developing Children,Male,123,103,125,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8920.002 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9765.1 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,5121.7 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,615.6 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,36.5 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,73590.0 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1110984.5 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1127206.5 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1108475.0 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,466891.47 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,567247.06 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,759430.06 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,16222.0 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2121.4 +,16072,18.43,Typically Developing Children,Male,123,103,125,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,268163.06 +,16072,18.43,Typically Developing Children,Male,123,103,125,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,714561.1 +,16072,18.43,Typically Developing Children,Male,123,103,125,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16072,18.43,Typically Developing Children,Male,123,103,125,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,586038.1 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,981.5 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1880.2 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16073,18.48,Typically Developing Children,Male,128,126,119,http://purl.org/nidash/fsl#,Background (mm^3),,,9312279.0 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1389477.0 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1373167.0 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1373316.1 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22860.2 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1051.6 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,865.9 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,872.7 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,723.8 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1046.7 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1081.4 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1783988.0 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,275535.22 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,297037.44 +,16073,18.48,Typically Developing Children,Male,128,126,119,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,851.0004 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,721.5 +,16073,18.48,Typically Developing Children,Male,128,126,119,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,969.0005 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1613.0 +,16073,18.48,Typically Developing Children,Male,128,126,119,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,5034.0024 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,5207.8 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62139.7 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15345.9 +,16073,18.48,Typically Developing Children,Male,128,126,119,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4515.002 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4169.6 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,255.4 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6001.8 +,16073,18.48,Typically Developing Children,Male,128,126,119,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2124.001 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2615.7 +,16073,18.48,Typically Developing Children,Male,128,126,119,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6326.003 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6551.6 +,16073,18.48,Typically Developing Children,Male,128,126,119,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9730.005 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9500.2 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4989.5 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,627.1 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,32.5 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1851967.0 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,167.7 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,275525.7 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,296265.84 +,16073,18.48,Typically Developing Children,Male,128,126,119,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,616.0003 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,693.0 +,16073,18.48,Typically Developing Children,Male,128,126,119,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1362.0006 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1903.1 +,16073,18.48,Typically Developing Children,Male,128,126,119,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5397.0024 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5226.9 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64448.1 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14372.6 +,16073,18.48,Typically Developing Children,Male,128,126,119,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4363.002 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4521.1 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,139.3 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4938.6 +,16073,18.48,Typically Developing Children,Male,128,126,119,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2115.001 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2576.4 +,16073,18.48,Typically Developing Children,Male,128,126,119,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6639.003 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6484.3 +,16073,18.48,Typically Developing Children,Male,128,126,119,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9332.005 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9523.3 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4711.5 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,530.0 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,10.5 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,72337.0 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1219856.1 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1232262.1 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1216424.0 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,551060.9 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,593303.3 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,793401.3 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12406.0 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,907.9 +,16073,18.48,Typically Developing Children,Male,128,126,119,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,244825.12 +,16073,18.48,Typically Developing Children,Male,128,126,119,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,742581.4 +,16073,18.48,Typically Developing Children,Male,128,126,119,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16073,18.48,Typically Developing Children,Male,128,126,119,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,635952.25 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,662.2 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1240.5 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9323984.0 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1053055.0 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1038785.0 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1038861.0 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18521.9 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,849.5 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,487.9 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,462.9 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,555.1 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1044.0 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,769.5 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1370941.2 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,192352.86 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,226900.17 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,556.0001 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,503.8 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1328.0004 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1520.5 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3745.001 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3625.0 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58953.5 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13120.7 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3941.001 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4016.2 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,250.8 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4168.0 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1795.0005 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1924.8 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4955.001 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4852.5 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7860.002 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7271.7 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3889.0 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,360.5 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.5 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1436284.0 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,123.9 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,193339.86 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,227910.1 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,482.00012 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,513.3 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1510.0004 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1586.3 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3713.001 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3610.8 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58111.4 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12499.5 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3831.001 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4109.5 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,297.9 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6428.5 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1532.0004 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1795.6 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5068.001 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5016.2 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7350.002 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7082.9 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3854.0 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,520.3 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.3 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56538.0 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,898681.0 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,910312.0 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,896863.0 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,385692.72 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,454810.28 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,628378.25 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11631.0 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,687.6 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,195642.03 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,580486.1 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16074,18.49,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,470732.12 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,976.7 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2483.7 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,http://purl.org/nidash/fsl#,Background (mm^3),,,9328709.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1013018.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,991762.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,991719.9 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19134.5 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,807.5 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,430.6 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,566.1 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,491.4 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,912.9 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,716.6 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1368046.5 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,188992.33 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,222000.78 +,16075,18.52,Typically Developing Children,Female,105,99,108,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,488.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,447.2 +,16075,18.52,Typically Developing Children,Female,105,99,108,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,957.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1209.5 +,16075,18.52,Typically Developing Children,Female,105,99,108,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3141.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3205.2 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,49383.8 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12413.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3487.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3562.6 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,527.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8848.7 +,16075,18.52,Typically Developing Children,Female,105,99,108,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1628.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1729.2 +,16075,18.52,Typically Developing Children,Female,105,99,108,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4564.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4789.2 +,16075,18.52,Typically Developing Children,Female,105,99,108,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6951.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6644.4 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4223.1 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,544.9 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,40.3 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1428198.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,153.9 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,186120.69 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,219092.08 +,16075,18.52,Typically Developing Children,Female,105,99,108,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,307.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,462.4 +,16075,18.52,Typically Developing Children,Female,105,99,108,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1307.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1448.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3204.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3085.6 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,48843.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12478.3 +,16075,18.52,Typically Developing Children,Female,105,99,108,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3832.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3741.8 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,414.6 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6513.5 +,16075,18.52,Typically Developing Children,Female,105,99,108,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1657.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1706.7 +,16075,18.52,Typically Developing Children,Female,105,99,108,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4765.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4714.2 +,16075,18.52,Typically Developing Children,Female,105,99,108,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6651.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6538.1 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3791.3 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,445.5 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,32.1 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,52745.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,870567.9 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,887644.9 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,868907.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,375113.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,441092.84 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,592707.9 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,17077.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,476.9 +,16075,18.52,Typically Developing Children,Female,105,99,108,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,225323.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,541372.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16075,18.52,Typically Developing Children,Female,105,99,108,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,455858.0 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,621.8 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2120.5 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9320182.0 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1280402.0 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1264984.0 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1265425.2 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22241.9 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1037.5 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,513.6 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,436.8 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,573.7 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,941.0 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,731.2 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1674607.4 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,237141.0 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,289779.44 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,457.00012 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,620.9 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1217.0002 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1481.0 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4049.001 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4267.4 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59537.4 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14128.5 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3508.0007 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3896.2 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,291.2 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6797.4 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1920.0005 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2297.5 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5784.0015 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6026.0 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9039.002 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9166.3 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,5042.2 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,424.1 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,59.0 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1701577.0 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,214.0 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,234746.52 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,287859.3 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,356.0001 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,586.5 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1421.0004 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1735.9 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3772.001 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4305.0 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61507.9 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13746.5 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4021.001 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4040.4 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,383.9 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4055.2 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1912.0005 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2232.2 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5111.001 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5943.7 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8901.002 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8962.1 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4744.3 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,414.2 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,17.8 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67008.0 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1119318.2 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1131341.2 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1115977.0 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,471887.5 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,577638.75 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,766392.75 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12023.0 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,465.6 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,214493.06 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,700229.1 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16076,18.6,Typically Developing Children,Female,125,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,565251.1 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,679.8 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,928.9 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,2.7 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9324892.0 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1168394.0 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1153440.0 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1153910.8 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20426.9 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,786.0 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,617.2 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,623.9 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,605.4 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,995.5 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,940.3 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1515388.4 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,209884.05 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,263131.72 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,564.0005 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,570.4 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,931.0008 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1673.9 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3918.0032 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3993.5 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57340.9 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15129.6 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3418.003 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4353.8 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,254.5 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5246.6 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1640.0013 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2213.1 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4807.004 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5357.7 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7818.0063 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7799.0 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4432.9 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,443.0 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,28.6 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1565149.0 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,56.1 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,210497.11 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,265555.9 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,490.0004 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,591.6 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,821.0007 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1776.1 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4254.0034 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4110.7 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56225.3 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13523.3 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3781.0032 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4154.6 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,339.2 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5989.8 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1648.0013 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2218.9 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5311.0044 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5466.6 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7363.0063 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7593.3 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4084.5 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,443.1 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,23.9 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61890.0 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1014010.8 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1026472.8 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1010478.0 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,420381.16 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,528687.6 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,705536.6 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12462.0 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,512.0 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,198929.17 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,674936.56 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16077,18.72,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,512098.44 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1047.6 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1295.1 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16078,18.72,Typically Developing Children,Male,124,119,110,http://purl.org/nidash/fsl#,Background (mm^3),,,9316772.0 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1302176.0 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1277275.0 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1277273.8 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22049.3 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,939.4 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,618.0 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,399.2 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,536.2 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,832.3 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,943.6 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1758960.4 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,240853.34 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,283651.53 +,16078,18.72,Typically Developing Children,Male,124,119,110,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,677.00024 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,659.7 +,16078,18.72,Typically Developing Children,Male,124,119,110,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1330.0005 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1722.9 +,16078,18.72,Typically Developing Children,Male,124,119,110,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4434.0015 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4585.5 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,65094.6 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14687.8 +,16078,18.72,Typically Developing Children,Male,124,119,110,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4476.0015 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4672.8 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,548.8 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8451.1 +,16078,18.72,Typically Developing Children,Male,124,119,110,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1979.0007 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2311.7 +,16078,18.72,Typically Developing Children,Male,124,119,110,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5817.002 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5958.4 +,16078,18.72,Typically Developing Children,Male,124,119,110,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8694.003 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7812.3 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4896.6 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,773.4 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,50.5 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1799643.0 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,199.5 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,241825.73 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,283794.16 +,16078,18.72,Typically Developing Children,Male,124,119,110,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,546.0002 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,554.2 +,16078,18.72,Typically Developing Children,Male,124,119,110,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1386.0005 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1673.9 +,16078,18.72,Typically Developing Children,Male,124,119,110,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4658.0015 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4677.0 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,67140.5 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14293.0 +,16078,18.72,Typically Developing Children,Male,124,119,110,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4689.0015 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4700.5 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,442.4 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,10724.9 +,16078,18.72,Typically Developing Children,Male,124,119,110,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2109.0007 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2126.4 +,16078,18.72,Typically Developing Children,Male,124,119,110,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5676.002 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5695.3 +,16078,18.72,Typically Developing Children,Male,124,119,110,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8408.003 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8036.3 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4571.3 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,808.6 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,32.1 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66222.0 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1118482.8 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1140093.8 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1116235.0 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,482679.06 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,567445.7 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,766562.7 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,21611.0 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,947.1 +,16078,18.72,Typically Developing Children,Male,124,119,110,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,258305.11 +,16078,18.72,Typically Developing Children,Male,124,119,110,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,727539.3 +,16078,18.72,Typically Developing Children,Male,124,119,110,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16078,18.72,Typically Developing Children,Male,124,119,110,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,569719.2 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,748.6 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1471.2 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9318842.0 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1252595.0 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1237202.0 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1237859.8 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21189.6 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,743.7 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,626.3 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,466.8 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,403.0 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,830.5 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,949.6 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1652218.4 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,228305.44 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,288139.38 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,583.9995 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,612.6 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,717.9994 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1851.1 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4557.996 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4686.1 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55184.5 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14193.9 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4146.9966 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4280.2 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,366.2 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5499.1 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1886.9984 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2375.1 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6122.995 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6514.2 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8362.993 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9280.2 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4525.4 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,439.1 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,29.7 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1706199.0 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,175.8 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,223325.97 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,285887.0 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,478.9996 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,666.8 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,618.9995 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2084.8 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4866.996 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4801.0 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59112.2 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13220.3 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3994.9966 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4416.9 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,370.0 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5496.1 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1893.9984 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2083.9 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6208.9946 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6372.3 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8354.993 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9571.7 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4397.4 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,450.6 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,30.1 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,70065.0 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1098354.8 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1110579.8 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1094974.0 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,451631.4 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,574026.4 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,759513.4 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12225.0 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,663.3 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,217526.81 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,685137.4 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16079,18.74,Typically Developing Children,Male,119,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,536348.5 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,817.0 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1733.9 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9320051.0 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1240264.0 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1220624.0 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1220344.2 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19823.6 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,868.7 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,580.4 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,672.8 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,530.1 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1155.8 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,894.3 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1299187.8 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,236267.02 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,278816.06 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,549.9997 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,623.1 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1016.9994 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,2092.3 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4358.9976 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4243.3 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,51320.1 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12830.2 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4026.9976 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4178.7 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,427.5 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8012.9 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1844.9989 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2182.5 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5388.9966 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5606.5 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8477.995 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8067.2 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4554.5 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,498.7 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,24.3 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1658735.0 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,126.1 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,235132.52 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,280752.62 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,530.9997 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,564.1 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1243.9993 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1973.4 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4479.9976 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4316.2 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,50230.6 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12124.9 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4211.9976 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4132.7 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,342.6 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6712.2 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1855.9989 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2095.0 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5448.9966 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5449.8 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8153.995 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7952.9 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4234.2 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,494.0 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,13.9 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63629.0 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1096429.2 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1112709.2 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1094773.0 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,471399.53 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,559568.7 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,724944.7 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,16280.0 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,541.3 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,237538.84 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,683418.6 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16080,18.8,Typically Developing Children,Female,121,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,550214.6 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,788.7 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2137.6 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9315630.0 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1280928.0 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1259205.0 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1259395.6 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21602.4 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,902.9 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,487.5 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,477.5 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,602.4 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1153.0 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,959.3 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1687466.5 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,248715.06 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,270773.94 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,794.99945 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,709.9 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1511.9989 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1893.8 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4633.9966 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4653.8 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58810.9 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14314.7 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4642.9966 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4521.3 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,514.6 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6572.7 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2008.9985 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2483.4 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5705.996 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5780.4 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9125.993 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8860.3 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4756.6 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,451.4 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,27.2 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1748312.0 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,193.4 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,249047.27 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,272622.3 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,564.9996 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,679.5 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1156.9991 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1990.0 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4833.9966 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4879.3 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62032.5 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13757.4 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4477.9966 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4445.7 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,406.8 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,9524.3 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2033.9985 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2313.1 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5950.9956 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5814.0 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8566.994 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8727.0 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4740.9 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,590.7 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,27.9 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68800.0 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1112986.6 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1130919.6 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1109664.0 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,497762.3 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,543396.25 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,734692.25 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,17933.0 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,406.4 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,237716.84 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,680027.5 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16081,18.81,Typically Developing Children,Male,103,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,574082.6 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,717.7 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1718.9 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9324710.0 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1141193.0 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1122321.0 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1122903.5 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17665.8 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,898.6 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,444.5 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,458.4 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,504.5 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,893.9 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1006.4 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1479853.8 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,216179.45 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,253619.7 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,520.00024 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,530.4 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1195.0006 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1673.3 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3649.0017 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3511.2 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52683.5 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12725.6 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4074.002 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3930.7 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,400.0 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5553.6 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1673.0009 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1791.5 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4918.0024 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4863.4 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7486.0034 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6872.5 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3758.0 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,476.4 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,13.1 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1579681.0 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,135.3 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,213262.72 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,253159.69 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,533.00024 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,586.0 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1231.0006 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1772.5 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3834.0017 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3784.9 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54164.4 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12158.1 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3802.0017 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4066.7 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,670.2 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8067.3 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1685.0009 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1818.8 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5075.0024 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5042.9 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7267.0034 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6698.9 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3636.7 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,637.0 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,11.8 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55685.0 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,993281.56 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1008761.56 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,991209.0 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,429442.16 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,506779.4 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,669687.4 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15480.0 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,383.8 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,229496.12 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,629045.25 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16082,18.85,Typically Developing Children,Female,118,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,506935.25 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,809.9 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1575.9 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9316943.0 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1260738.0 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1242633.0 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1242807.9 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21201.0 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,992.6 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,860.8 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,737.1 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,655.1 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1040.9 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1085.4 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1746965.5 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,246621.25 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,268330.0 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,678.99945 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,603.0 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1477.9988 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1624.4 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4182.9966 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4174.0 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61381.6 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13879.7 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4163.9966 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4210.3 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,419.4 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7260.7 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1973.9984 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2569.6 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5765.995 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5479.7 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8946.992 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8567.1 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4607.1 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,559.2 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.6 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1711041.0 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,236.8 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,244885.6 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,269369.06 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,529.9996 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,552.9 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1558.9987 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2015.7 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4399.996 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4439.4 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60104.0 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12398.6 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4484.996 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4315.4 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,479.6 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5681.9 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2005.9983 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2099.9 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5745.995 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5596.7 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8779.992 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9025.7 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4706.9 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,612.7 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.9 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66423.0 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1097512.9 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1112214.9 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1095278.0 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,491506.84 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,537699.06 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,726002.06 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14702.0 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,523.7 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,250841.78 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,678211.4 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16083,18.86,Typically Developing Children,Male,133,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,575828.5 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1293.1 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2916.0 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16084,18.9,Typically Developing Children,Male,118,118,110,http://purl.org/nidash/fsl#,Background (mm^3),,,9313479.0 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1330952.0 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1299257.0 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1299944.5 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,25744.0 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1073.7 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,505.8 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,497.2 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,618.7 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1068.1 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1234.8 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1859496.0 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,249111.11 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,287956.16 +,16084,18.9,Typically Developing Children,Male,118,118,110,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,713.00037 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,774.7 +,16084,18.9,Typically Developing Children,Male,118,118,110,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1566.0007 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,2066.5 +,16084,18.9,Typically Developing Children,Male,118,118,110,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4589.002 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4711.7 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61580.7 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15931.5 +,16084,18.9,Typically Developing Children,Male,118,118,110,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4183.002 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4003.9 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,592.0 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,11468.1 +,16084,18.9,Typically Developing Children,Male,118,118,110,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2112.001 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2949.6 +,16084,18.9,Typically Developing Children,Male,118,118,110,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6130.003 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6433.6 +,16084,18.9,Typically Developing Children,Male,118,118,110,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9912.005 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9748.0 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,5205.4 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,678.7 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,17.0 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1848540.0 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,174.3 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,247710.11 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,285349.2 +,16084,18.9,Typically Developing Children,Male,118,118,110,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,669.0003 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,731.9 +,16084,18.9,Typically Developing Children,Male,118,118,110,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1742.0009 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2317.1 +,16084,18.9,Typically Developing Children,Male,118,118,110,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5088.0024 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5062.1 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62451.6 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15375.7 +,16084,18.9,Typically Developing Children,Male,118,118,110,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3959.002 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4100.7 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,638.0 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,12341.1 +,16084,18.9,Typically Developing Children,Male,118,118,110,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2420.0012 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2850.7 +,16084,18.9,Typically Developing Children,Male,118,118,110,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6131.003 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6226.7 +,16084,18.9,Typically Developing Children,Male,118,118,110,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8959.004 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9536.6 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,5197.5 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,653.1 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.5 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,73877.0 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1146262.5 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1172535.5 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1143184.0 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,496821.22 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,573305.3 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,772765.3 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,26273.0 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,631.2 +,16084,18.9,Typically Developing Children,Male,118,118,110,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,284391.12 +,16084,18.9,Typically Developing Children,Male,118,118,110,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,705639.4 +,16084,18.9,Typically Developing Children,Male,118,118,110,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16084,18.9,Typically Developing Children,Male,118,118,110,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,587713.25 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,774.5 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1222.0 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9332824.0 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1161590.0 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1144570.0 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1145143.0 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19536.1 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,831.4 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,546.6 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,578.4 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,606.1 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,999.8 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1131.3 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1390761.4 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,215248.1 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,255283.47 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,256.9999 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,608.2 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,733.99976 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1598.1 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2677.9993 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4054.2 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56670.7 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15142.1 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3569.999 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3844.6 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,267.0 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6512.8 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1277.9996 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2360.9 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,3403.999 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4750.6 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7265.998 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8441.4 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4049.5 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,396.5 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,60.5 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1580247.0 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,140.5 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,213575.33 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,256139.08 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,183.99994 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,647.4 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,672.9998 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1642.7 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3032.999 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4477.2 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59671.5 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12944.2 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3442.999 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3972.5 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,288.7 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6333.0 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1544.9995 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1933.1 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,3739.9988 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5316.8 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7015.998 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7647.9 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4065.4 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,453.7 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.8 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60642.0 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1002901.0 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1016834.0 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1000246.0 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,428823.4 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,511422.56 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,689119.56 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13933.0 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,278.7 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,203399.94 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,639797.8 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16085,18.9,Typically Developing Children,Female,113,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,512444.84 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,727.5 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2044.9 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16086,18.93,Typically Developing Children,Male,95,102,108,http://purl.org/nidash/fsl#,Background (mm^3),,,9318938.0 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1306457.0 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1289261.0 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1289834.6 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22893.4 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1050.4 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,712.7 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,744.1 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,636.6 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1086.2 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,767.3 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1760568.9 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,242358.78 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,293889.97 +,16086,18.93,Typically Developing Children,Male,95,102,108,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,648.99976 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,714.1 +,16086,18.93,Typically Developing Children,Male,95,102,108,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1243.9995 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1705.4 +,16086,18.93,Typically Developing Children,Male,95,102,108,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4305.9985 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4482.8 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58629.6 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13899.4 +,16086,18.93,Typically Developing Children,Male,95,102,108,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4226.9985 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4212.9 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,268.3 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6327.5 +,16086,18.93,Typically Developing Children,Male,95,102,108,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1977.9993 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2479.0 +,16086,18.93,Typically Developing Children,Male,95,102,108,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5311.998 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5544.2 +,16086,18.93,Typically Developing Children,Male,95,102,108,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8956.997 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8546.3 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4805.5 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,452.6 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,36.0 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1772097.0 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,214.4 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,243538.27 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,295381.7 +,16086,18.93,Typically Developing Children,Male,95,102,108,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,608.99976 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,689.3 +,16086,18.93,Typically Developing Children,Male,95,102,108,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,847.9997 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1976.1 +,16086,18.93,Typically Developing Children,Male,95,102,108,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4386.9985 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4462.6 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61662.1 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14087.5 +,16086,18.93,Typically Developing Children,Male,95,102,108,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4220.9985 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4271.3 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,353.6 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6049.3 +,16086,18.93,Typically Developing Children,Male,95,102,108,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1926.9993 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2320.0 +,16086,18.93,Typically Developing Children,Male,95,102,108,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5185.998 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5503.7 +,16086,18.93,Typically Developing Children,Male,95,102,108,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8855.997 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8589.2 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4692.5 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,508.2 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,69.4 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67001.0 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1143898.6 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1157604.6 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1141469.0 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,485897.03 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,589271.6 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,777043.6 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13706.0 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,747.8 +,16086,18.93,Typically Developing Children,Male,95,102,108,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,239292.9 +,16086,18.93,Typically Developing Children,Male,95,102,108,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,718080.75 +,16086,18.93,Typically Developing Children,Male,95,102,108,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16086,18.93,Typically Developing Children,Male,95,102,108,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,572187.75 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,895.9 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1975.4 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9326227.0 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1359422.0 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1340469.0 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1340391.6 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19684.8 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,769.8 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,724.0 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,639.4 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,631.1 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1077.4 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,848.6 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1757212.1 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,261401.72 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,308949.56 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,453.99973 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,595.3 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,606.99963 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1989.2 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3980.9976 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3988.3 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53861.9 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13704.4 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3423.998 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4131.4 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,147.8 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,10362.3 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1511.9991 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2130.1 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,3990.9976 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6216.7 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7289.9956 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8801.7 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4103.0 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,346.7 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,24.8 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1830150.0 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,192.4 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,259634.77 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,306297.6 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,357.9998 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,660.3 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,983.9994 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1955.5 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3840.9978 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4202.8 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57568.2 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12243.9 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3842.9978 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4504.4 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,288.7 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4184.7 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1687.999 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2164.9 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5627.9966 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6180.0 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7813.995 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8944.9 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3854.9 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,443.7 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,25.2 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66101.0 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1205258.6 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1220574.6 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1202300.0 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,521036.47 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,615247.2 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,794480.2 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15316.0 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,742.7 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,238872.84 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,736965.5 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16087,18.96,Typically Developing Children,Male,113,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,588181.6 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,749.6 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1303.6 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16088,19.66,Typically Developing Children,Female,120,118,117,http://purl.org/nidash/fsl#,Background (mm^3),,,9326435.0 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1204665.0 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1193012.0 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1193036.6 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20855.7 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,805.9 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,662.8 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,624.5 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,488.0 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1070.3 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,741.5 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1539794.5 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,223711.62 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,274891.72 +,16088,19.66,Typically Developing Children,Female,120,118,117,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,353.9999 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,550.4 +,16088,19.66,Typically Developing Children,Female,120,118,117,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,801.9998 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1769.5 +,16088,19.66,Typically Developing Children,Female,120,118,117,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3203.9993 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3871.3 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55729.2 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14925.6 +,16088,19.66,Typically Developing Children,Female,120,118,117,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3677.999 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4202.5 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,353.4 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4407.7 +,16088,19.66,Typically Developing Children,Female,120,118,117,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1390.9996 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2108.9 +,16088,19.66,Typically Developing Children,Female,120,118,117,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5279.9985 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5764.7 +,16088,19.66,Typically Developing Children,Female,120,118,117,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7551.998 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7787.1 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4455.5 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,368.0 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,47.6 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1605231.0 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,131.5 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,219597.94 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,272513.34 +,16088,19.66,Typically Developing Children,Female,120,118,117,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,343.9999 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,618.3 +,16088,19.66,Typically Developing Children,Female,120,118,117,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1001.99976 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1862.5 +,16088,19.66,Typically Developing Children,Female,120,118,117,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3365.9993 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3911.0 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56236.5 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14155.9 +,16088,19.66,Typically Developing Children,Female,120,118,117,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3826.999 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4490.6 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,575.0 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3174.6 +,16088,19.66,Typically Developing Children,Female,120,118,117,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1545.9996 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1993.4 +,16088,19.66,Typically Developing Children,Female,120,118,117,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5527.9985 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5519.8 +,16088,19.66,Typically Developing Children,Female,120,118,117,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7336.998 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7519.0 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4167.4 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,359.7 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,26.2 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61941.0 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1054272.6 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1063151.6 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1052580.0 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,443309.56 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,547405.06 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,721538.06 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8879.0 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,717.2 +,16088,19.66,Typically Developing Children,Female,120,118,117,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,190977.97 +,16088,19.66,Typically Developing Children,Female,120,118,117,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,665140.9 +,16088,19.66,Typically Developing Children,Female,120,118,117,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16088,19.66,Typically Developing Children,Female,120,118,117,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,519231.88 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1208.1 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,3297.5 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,16089,20.45,Typically Developing Children,Female,115,125,108,http://purl.org/nidash/fsl#,Background (mm^3),,,9322788.0 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1089343.0 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1073024.0 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1073286.4 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20792.5 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,609.4 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,596.4 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,556.0 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,531.2 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,778.4 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,668.9 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1407504.6 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,202825.25 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,236043.98 +,16089,20.45,Typically Developing Children,Female,115,125,108,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,510.99963 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,580.8 +,16089,20.45,Typically Developing Children,Female,115,125,108,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1211.9991 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1432.4 +,16089,20.45,Typically Developing Children,Female,115,125,108,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3922.9973 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3861.4 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55851.8 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12701.5 +,16089,20.45,Typically Developing Children,Female,115,125,108,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3933.997 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3803.3 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,295.4 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4908.6 +,16089,20.45,Typically Developing Children,Female,115,125,108,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1725.9988 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2060.9 +,16089,20.45,Typically Developing Children,Female,115,125,108,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5657.996 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5854.0 +,16089,20.45,Typically Developing Children,Female,115,125,108,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7238.9946 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7828.6 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4296.1 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,321.5 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,37.6 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1461292.0 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,115.8 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,202388.14 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,235354.98 +,16089,20.45,Typically Developing Children,Female,115,125,108,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,453.99966 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,478.7 +,16089,20.45,Typically Developing Children,Female,115,125,108,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1258.9991 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1614.6 +,16089,20.45,Typically Developing Children,Female,115,125,108,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4203.997 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4056.3 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56421.4 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11712.5 +,16089,20.45,Typically Developing Children,Female,115,125,108,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4125.997 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3953.8 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,320.4 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5391.9 +,16089,20.45,Typically Developing Children,Female,115,125,108,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1812.9987 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1876.4 +,16089,20.45,Typically Developing Children,Female,115,125,108,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5556.996 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5674.3 +,16089,20.45,Typically Developing Children,Female,115,125,108,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7236.9946 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7949.0 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4249.1 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,407.9 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,25.9 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60655.0 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,939179.4 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,950418.4 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,936948.0 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,405213.38 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,471398.97 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,644765.0 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11239.0 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,280.8 +,16089,20.45,Typically Developing Children,Female,115,125,108,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,191225.88 +,16089,20.45,Typically Developing Children,Female,115,125,108,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,583983.6 +,16089,20.45,Typically Developing Children,Female,115,125,108,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,16089,20.45,Typically Developing Children,Female,115,125,108,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,481127.62 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,927.1 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1767.8 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1623716,12.65,ADHD-Combined,Female,89,88,89,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3065184E7 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,981648.0 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,950318.0 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,950232.1 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18193.3 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,733.2 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,327.8 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,307.2 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,278.7 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,730.6 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1363.3 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1243638.5 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,167064.39 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,211837.16 +,1623716,12.65,ADHD-Combined,Female,89,88,89,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,526.0044 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,776.3 +,1623716,12.65,ADHD-Combined,Female,89,88,89,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1040.0087 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1375.5 +,1623716,12.65,ADHD-Combined,Female,89,88,89,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3964.033 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4128.8 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53368.5 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13439.1 +,1623716,12.65,ADHD-Combined,Female,89,88,89,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2544.0212 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3299.6 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,300.2 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,15292.8 +,1623716,12.65,ADHD-Combined,Female,89,88,89,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1716.0143 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1645.5 +,1623716,12.65,ADHD-Combined,Female,89,88,89,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,3872.0322 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4112.9 +,1623716,12.65,ADHD-Combined,Female,89,88,89,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7756.065 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7138.8 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3770.9 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,232.1 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,48.6 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1334868.0 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,113.8 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,165807.94 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,216054.64 +,1623716,12.65,ADHD-Combined,Female,89,88,89,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,463.00388 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,657.2 +,1623716,12.65,ADHD-Combined,Female,89,88,89,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1001.00836 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1637.2 +,1623716,12.65,ADHD-Combined,Female,89,88,89,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3949.033 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4244.9 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55063.2 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12746.0 +,1623716,12.65,ADHD-Combined,Female,89,88,89,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3907.0327 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3605.5 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,356.7 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,11995.8 +,1623716,12.65,ADHD-Combined,Female,89,88,89,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1699.0142 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1605.8 +,1623716,12.65,ADHD-Combined,Female,89,88,89,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,2177.018 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4070.0 +,1623716,12.65,ADHD-Combined,Female,89,88,89,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7511.0625 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6842.2 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3770.2 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,267.9 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,17.6 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,54667.0 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,816821.1 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,844218.1 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,815460.0 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,332872.3 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,427891.8 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,591746.8 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,27397.0 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1443.6 +,1623716,12.65,ADHD-Combined,Female,89,88,89,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,166952.39 +,1623716,12.65,ADHD-Combined,Female,89,88,89,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,435688.66 +,1623716,12.65,ADHD-Combined,Female,89,88,89,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1623716,12.65,ADHD-Combined,Female,89,88,89,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,418031.5 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,754.5 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1972.7 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,http://purl.org/nidash/fsl#,Background (mm^3),,,9319653.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1323168.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1306290.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1307235.1 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21332.8 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,874.6 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,743.1 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,545.1 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,613.3 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1019.6 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,808.8 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1707717.2 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,260235.45 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,287486.28 +,1628610,14.92,ADHD-Combined,Male,119,114,120,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,638.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,575.3 +,1628610,14.92,ADHD-Combined,Male,119,114,120,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1139.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1637.3 +,1628610,14.92,ADHD-Combined,Male,119,114,120,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4176.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4564.5 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58729.4 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15141.3 +,1628610,14.92,ADHD-Combined,Male,119,114,120,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3681.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4106.4 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,653.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7130.9 +,1628610,14.92,ADHD-Combined,Male,119,114,120,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2089.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2515.1 +,1628610,14.92,ADHD-Combined,Male,119,114,120,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5793.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6003.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8231.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8782.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4733.1 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,295.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,24.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1781262.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,153.7 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,258806.33 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,286253.03 +,1628610,14.92,ADHD-Combined,Male,119,114,120,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,590.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,684.2 +,1628610,14.92,ADHD-Combined,Male,119,114,120,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1474.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1844.8 +,1628610,14.92,ADHD-Combined,Male,119,114,120,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4299.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4465.5 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58272.5 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14465.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3552.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4245.5 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,251.6 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5182.9 +,1628610,14.92,ADHD-Combined,Male,119,114,120,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2198.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2394.9 +,1628610,14.92,ADHD-Combined,Male,119,114,120,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5911.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6099.9 +,1628610,14.92,ADHD-Combined,Male,119,114,120,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8224.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8386.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4684.7 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,278.4 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,21.1 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67260.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1163006.1 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1176433.1 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1158991.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,519041.78 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,573739.3 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,759384.3 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13427.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,609.7 +,1628610,14.92,ADHD-Combined,Male,119,114,120,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,218086.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,742158.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1628610,14.92,ADHD-Combined,Male,119,114,120,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,633715.0 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,591.6 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1428.9 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1638334,10.44,Typically Developing Children,Female,98,104,87,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3062728E7 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1171078.0 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1156611.0 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1156978.2 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19200.3 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,815.8 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,553.5 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,429.3 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,486.8 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,930.7 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,886.5 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1393754.1 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,194594.84 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,286042.47 +,1638334,10.44,Typically Developing Children,Female,98,104,87,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,479.00394 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,573.5 +,1638334,10.44,Typically Developing Children,Female,98,104,87,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1071.0088 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1507.9 +,1638334,10.44,Typically Developing Children,Female,98,104,87,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2984.0247 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3276.5 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58770.7 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13398.8 +,1638334,10.44,Typically Developing Children,Female,98,104,87,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3245.0266 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3669.1 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,368.1 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5175.4 +,1638334,10.44,Typically Developing Children,Female,98,104,87,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1580.013 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1799.8 +,1638334,10.44,Typically Developing Children,Female,98,104,87,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4517.037 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4940.7 +,1638334,10.44,Typically Developing Children,Female,98,104,87,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7888.065 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7676.9 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3651.8 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,384.9 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,7.6 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1505925.0 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,91.1 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,192647.28 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,284612.62 +,1638334,10.44,Typically Developing Children,Female,98,104,87,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,271.00223 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,576.9 +,1638334,10.44,Typically Developing Children,Female,98,104,87,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1520.0125 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1570.0 +,1638334,10.44,Typically Developing Children,Female,98,104,87,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3508.0288 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3563.2 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59320.5 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12375.4 +,1638334,10.44,Typically Developing Children,Female,98,104,87,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3000.0247 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3381.2 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,334.9 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5294.1 +,1638334,10.44,Typically Developing Children,Female,98,104,87,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1687.0139 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1581.5 +,1638334,10.44,Typically Developing Children,Female,98,104,87,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4751.039 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4859.5 +,1638334,10.44,Typically Developing Children,Female,98,104,87,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8078.0664 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7398.1 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3877.6 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,549.0 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,11.3 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55877.0 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1015298.25 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1027040.25 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1013325.0 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,387242.12 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,570655.1 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,744730.1 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11742.0 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,725.4 +,1638334,10.44,Typically Developing Children,Female,98,104,87,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,155554.28 +,1638334,10.44,Typically Developing Children,Female,98,104,87,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,617622.1 +,1638334,10.44,Typically Developing Children,Female,98,104,87,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1638334,10.44,Typically Developing Children,Female,98,104,87,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,455344.75 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1318.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2423.4 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1643780,10,ADHD-Combined,Male,113,103,119,http://purl.org/nidash/fsl#,Background (mm^3),,,9322671.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1238363.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1215802.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1217006.2 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20275.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,785.9 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,498.9 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,618.4 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,453.8 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,829.6 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1021.8 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1534710.5 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,209536.22 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,296720.0 +,1643780,10,ADHD-Combined,Male,113,103,119,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,504.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,507.4 +,1643780,10,ADHD-Combined,Male,113,103,119,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1516.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1731.4 +,1643780,10,ADHD-Combined,Male,113,103,119,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3803.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3850.5 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59995.1 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14299.1 +,1643780,10,ADHD-Combined,Male,113,103,119,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3466.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3789.9 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,294.2 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8350.2 +,1643780,10,ADHD-Combined,Male,113,103,119,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1942.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2085.4 +,1643780,10,ADHD-Combined,Male,113,103,119,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4990.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5307.3 +,1643780,10,ADHD-Combined,Male,113,103,119,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8208.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7637.8 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4137.7 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,446.4 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,41.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1622185.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,131.1 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,208016.33 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,295518.75 +,1643780,10,ADHD-Combined,Male,113,103,119,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,398.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,509.8 +,1643780,10,ADHD-Combined,Male,113,103,119,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1238.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1652.1 +,1643780,10,ADHD-Combined,Male,113,103,119,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3672.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3909.3 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59827.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13505.2 +,1643780,10,ADHD-Combined,Male,113,103,119,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4125.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4145.9 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,268.2 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8340.9 +,1643780,10,ADHD-Combined,Male,113,103,119,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1842.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1854.1 +,1643780,10,ADHD-Combined,Male,113,103,119,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5160.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5274.1 +,1643780,10,ADHD-Combined,Male,113,103,119,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8113.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7750.8 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4122.4 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,444.9 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,20.1 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59742.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1071332.2 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1089238.2 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1068271.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,417552.53 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,592238.75 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,772355.75 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,17906.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,496.7 +,1643780,10,ADHD-Combined,Male,113,103,119,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,192848.0 +,1643780,10,ADHD-Combined,Male,113,103,119,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,720668.0 +,1643780,10,ADHD-Combined,Male,113,103,119,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1643780,10,ADHD-Combined,Male,113,103,119,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,518642.0 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,684.3 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1684.3 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1652369,10.6,Typically Developing Children,Female,115,106,112,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3058732E7 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1248490.0 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1235709.0 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1236490.0 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19015.1 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,857.9 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,426.3 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,583.1 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,441.6 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,876.0 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,852.5 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1480718.2 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,203633.86 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,304008.38 +,1652369,10.6,Typically Developing Children,Female,115,106,112,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,596.99866 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,691.0 +,1652369,10.6,Typically Developing Children,Female,115,106,112,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,806.99817 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1501.3 +,1652369,10.6,Typically Developing Children,Female,115,106,112,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3907.9912 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3770.1 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63271.9 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13024.1 +,1652369,10.6,Typically Developing Children,Female,115,106,112,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3205.9927 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3886.0 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,330.9 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5351.0 +,1652369,10.6,Typically Developing Children,Female,115,106,112,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1757.996 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1681.2 +,1652369,10.6,Typically Developing Children,Female,115,106,112,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4929.989 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5518.5 +,1652369,10.6,Typically Developing Children,Female,115,106,112,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8774.98 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7703.9 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4022.8 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,275.8 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,62.7 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1565289.0 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,156.6 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,206963.14 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,309519.62 +,1652369,10.6,Typically Developing Children,Female,115,106,112,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,462.99896 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,659.7 +,1652369,10.6,Typically Developing Children,Female,115,106,112,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,905.9979 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1755.3 +,1652369,10.6,Typically Developing Children,Female,115,106,112,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3980.991 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4094.9 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63487.3 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12297.0 +,1652369,10.6,Typically Developing Children,Female,115,106,112,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3463.9922 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3838.8 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,641.9 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3154.2 +,1652369,10.6,Typically Developing Children,Female,115,106,112,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1770.996 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1641.1 +,1652369,10.6,Typically Developing Children,Female,115,106,112,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5098.9883 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5351.1 +,1652369,10.6,Typically Developing Children,Female,115,106,112,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8772.98 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7944.9 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4095.9 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,411.6 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,34.9 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60287.0 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1086407.0 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1096117.0 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1083574.0 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,410597.0 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,613528.0 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,801161.0 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9710.0 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,806.8 +,1652369,10.6,Typically Developing Children,Female,115,106,112,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,182274.58 +,1652369,10.6,Typically Developing Children,Female,115,106,112,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,659269.5 +,1652369,10.6,Typically Developing Children,Female,115,106,112,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1652369,10.6,Typically Developing Children,Female,115,106,112,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,476440.9 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,3180.4 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2783.2 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1662160,12.58,Typically Developing Children,Male,107,88,123,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1004008E7 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1391584.0 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1350529.0 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1350677.4 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,23260.5 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,822.6 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,702.6 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,793.6 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,635.7 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,975.2 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1547.7 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1785753.5 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,246013.33 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,311881.72 +,1662160,12.58,Typically Developing Children,Male,107,88,123,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,662.6953 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,654.1 +,1662160,12.58,Typically Developing Children,Male,107,88,123,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,943.9453 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1836.3 +,1662160,12.58,Typically Developing Children,Male,107,88,123,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4198.535 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4189.5 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63843.5 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15722.2 +,1662160,12.58,Typically Developing Children,Male,107,88,123,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4410.3516 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4716.2 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,783.0 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,17580.6 +,1662160,12.58,Typically Developing Children,Male,107,88,123,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2056.6406 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2191.5 +,1662160,12.58,Typically Developing Children,Male,107,88,123,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6322.8516 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6145.6 +,1662160,12.58,Typically Developing Children,Male,107,88,123,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8617.676 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8105.5 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,5231.1 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,707.7 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,62.5 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1915924.0 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,180.7 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,248039.08 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,317312.22 +,1662160,12.58,Typically Developing Children,Male,107,88,123,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,537.8906 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,628.1 +,1662160,12.58,Typically Developing Children,Male,107,88,123,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1293.75 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2113.5 +,1662160,12.58,Typically Developing Children,Male,107,88,123,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4354.1016 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4177.2 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63682.4 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14410.9 +,1662160,12.58,Typically Developing Children,Male,107,88,123,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4546.582 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4963.1 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,490.9 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,13914.6 +,1662160,12.58,Typically Developing Children,Male,107,88,123,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2064.5508 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2213.4 +,1662160,12.58,Typically Developing Children,Male,107,88,123,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6411.621 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6075.4 +,1662160,12.58,Typically Developing Children,Male,107,88,123,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8770.605 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8451.2 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4654.5 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,538.6 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,25.6 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68431.0 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1194992.4 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1228565.4 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1191419.0 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,494052.4 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,629193.94 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,827541.94 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,33573.0 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,751.8 +,1662160,12.58,Typically Developing Children,Male,107,88,123,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,289299.03 +,1662160,12.58,Typically Developing Children,Male,107,88,123,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,772566.5 +,1662160,12.58,Typically Developing Children,Male,107,88,123,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1662160,12.58,Typically Developing Children,Male,107,88,123,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,595325.4 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,754.1 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1642.5 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1686265,8.02,Typically Developing Children,Male,108,119,112,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3058551E7 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1347309.0 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1336888.0 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1337670.8 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17844.6 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,907.4 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,762.2 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,718.0 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,473.2 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,813.5 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,751.3 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1543033.4 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,218042.11 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,348180.9 +,1686265,8.02,Typically Developing Children,Male,108,119,112,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,539.00006 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,784.8 +,1686265,8.02,Typically Developing Children,Male,108,119,112,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1040.0001 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1838.0 +,1686265,8.02,Typically Developing Children,Male,108,119,112,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4181.0005 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4384.9 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56940.2 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11520.2 +,1686265,8.02,Typically Developing Children,Male,108,119,112,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3015.0002 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4259.2 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,370.6 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3573.9 +,1686265,8.02,Typically Developing Children,Male,108,119,112,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1700.0002 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1836.9 +,1686265,8.02,Typically Developing Children,Male,108,119,112,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5421.0005 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5745.3 +,1686265,8.02,Typically Developing Children,Male,108,119,112,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8328.001 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7714.2 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3726.3 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,271.6 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,30.3 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1701642.0 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,125.4 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,219260.11 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,354689.66 +,1686265,8.02,Typically Developing Children,Male,108,119,112,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,430.00006 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,723.8 +,1686265,8.02,Typically Developing Children,Male,108,119,112,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,799.0001 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1979.1 +,1686265,8.02,Typically Developing Children,Male,108,119,112,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4383.0005 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4484.3 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56129.2 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11260.7 +,1686265,8.02,Typically Developing Children,Male,108,119,112,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3629.0005 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4072.6 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,302.6 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2602.0 +,1686265,8.02,Typically Developing Children,Male,108,119,112,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1366.0001 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2080.8 +,1686265,8.02,Typically Developing Children,Male,108,119,112,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5525.0005 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5233.1 +,1686265,8.02,Typically Developing Children,Male,108,119,112,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8295.001 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7268.2 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3607.7 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,584.7 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,24.3 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61263.0 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1203901.8 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1211205.8 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1200564.0 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,437302.22 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,702870.56 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,878492.56 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7304.0 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1596.6 +,1686265,8.02,Typically Developing Children,Male,108,119,112,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,155417.03 +,1686265,8.02,Typically Developing Children,Male,108,119,112,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,683233.06 +,1686265,8.02,Typically Developing Children,Male,108,119,112,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1686265,8.02,Typically Developing Children,Male,108,119,112,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,477635.03 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,757.3 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2273.3 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1692275,10.78,Typically Developing Children,Female,105,119,108,http://purl.org/nidash/fsl#,Background (mm^3),,,1.305906E7 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1236893.0 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1217210.0 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1218094.9 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19258.0 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,798.0 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,392.7 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,366.8 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,465.8 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,865.6 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,981.7 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1387845.9 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,199883.03 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,311863.62 +,1692275,10.78,Typically Developing Children,Female,105,119,108,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,632.99896 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,808.5 +,1692275,10.78,Typically Developing Children,Female,105,119,108,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1015.9983 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1391.1 +,1692275,10.78,Typically Developing Children,Female,105,119,108,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3978.9934 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3914.9 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59946.6 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13540.2 +,1692275,10.78,Typically Developing Children,Female,105,119,108,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2879.995 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3742.0 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,415.2 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7536.1 +,1692275,10.78,Typically Developing Children,Female,105,119,108,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1781.9971 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1931.1 +,1692275,10.78,Typically Developing Children,Female,105,119,108,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5060.9917 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5189.2 +,1692275,10.78,Typically Developing Children,Female,105,119,108,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8396.986 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7421.3 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3529.9 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,387.0 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,26.1 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1549244.0 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,144.0 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,197954.52 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,307622.75 +,1692275,10.78,Typically Developing Children,Female,105,119,108,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,588.999 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,757.6 +,1692275,10.78,Typically Developing Children,Female,105,119,108,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1040.9983 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1550.4 +,1692275,10.78,Typically Developing Children,Female,105,119,108,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4151.993 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4233.5 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57569.6 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12335.9 +,1692275,10.78,Typically Developing Children,Female,105,119,108,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3742.9937 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3680.3 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,336.6 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7019.6 +,1692275,10.78,Typically Developing Children,Female,105,119,108,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1764.9971 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1612.6 +,1692275,10.78,Typically Developing Children,Female,105,119,108,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4988.9917 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5074.2 +,1692275,10.78,Typically Developing Children,Female,105,119,108,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8090.9863 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7574.4 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3676.6 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,593.4 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,25.9 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57863.0 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1076864.9 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1092725.9 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1074192.0 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,397837.53 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,619486.4 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,795222.4 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15861.0 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,754.4 +,1692275,10.78,Typically Developing Children,Female,105,119,108,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,151723.75 +,1692275,10.78,Typically Developing Children,Female,105,119,108,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,654622.0 +,1692275,10.78,Typically Developing Children,Female,105,119,108,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1692275,10.78,Typically Developing Children,Female,105,119,108,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,464712.25 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,583.1 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1173.5 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1700637,7.68,Typically Developing Children,Female,97,100,93,http://purl.org/nidash/fsl#,Background (mm^3),,,1.111819E7 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,962280.0 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,953454.0 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,953242.8 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,14707.3 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,712.0 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,661.3 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,667.7 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,442.2 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,870.7 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,822.3 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1192072.6 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,149850.22 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,235034.56 +,1700637,7.68,Typically Developing Children,Female,97,100,93,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,412.30057 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,505.6 +,1700637,7.68,Typically Developing Children,Female,97,100,93,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,348.46048 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1217.9 +,1700637,7.68,Typically Developing Children,Female,97,100,93,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3214.6145 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3088.1 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54825.7 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11249.7 +,1700637,7.68,Typically Developing Children,Female,97,100,93,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2976.5442 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3194.3 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,352.4 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2791.5 +,1700637,7.68,Typically Developing Children,Female,97,100,93,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1436.402 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1776.3 +,1700637,7.68,Typically Developing Children,Female,97,100,93,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4125.6655 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4549.8 +,1700637,7.68,Typically Developing Children,Female,97,100,93,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6727.1494 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7027.3 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3429.5 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,318.4 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,32.2 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1274734.0 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,123.3 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,149067.62 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,236430.42 +,1700637,7.68,Typically Developing Children,Female,97,100,93,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,309.89044 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,427.8 +,1700637,7.68,Typically Developing Children,Female,97,100,93,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,470.82065 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1340.5 +,1700637,7.68,Typically Developing Children,Female,97,100,93,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3384.8547 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3284.2 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53943.7 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11667.2 +,1700637,7.68,Typically Developing Children,Female,97,100,93,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3125.5044 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3113.2 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,368.7 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2846.0 +,1700637,7.68,Typically Developing Children,Female,97,100,93,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1451.032 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1655.8 +,1700637,7.68,Typically Developing Children,Female,97,100,93,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4480.7764 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4614.8 +,1700637,7.68,Typically Developing Children,Female,97,100,93,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6209.7783 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7107.2 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3282.5 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,427.1 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,51615.0 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,824607.8 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,831092.8 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,822117.0 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,298917.84 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,471465.0 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,631847.0 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6485.0 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,729.0 +,1700637,7.68,Typically Developing Children,Female,97,100,93,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,123517.27 +,1700637,7.68,Typically Developing Children,Female,97,100,93,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,628733.1 +,1700637,7.68,Typically Developing Children,Female,97,100,93,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1700637,7.68,Typically Developing Children,Female,97,100,93,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,365384.75 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,937.3 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1979.8 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1735881,9.39,Typically Developing Children,Female,116,102,114,http://purl.org/nidash/fsl#,Background (mm^3),,,1.305914E7 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1124365.0 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1106499.0 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1107166.1 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18813.5 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,664.9 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,416.4 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,341.4 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,388.4 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,710.8 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,927.6 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1314482.2 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,171594.61 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,279228.6 +,1735881,9.39,Typically Developing Children,Female,116,102,114,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,529.0001 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,581.1 +,1735881,9.39,Typically Developing Children,Female,116,102,114,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1111.0002 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1472.1 +,1735881,9.39,Typically Developing Children,Female,116,102,114,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3849.001 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3803.3 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61558.0 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12253.2 +,1735881,9.39,Typically Developing Children,Female,116,102,114,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3845.001 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3838.4 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,414.8 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6439.2 +,1735881,9.39,Typically Developing Children,Female,116,102,114,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1641.0004 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1603.9 +,1735881,9.39,Typically Developing Children,Female,116,102,114,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4930.001 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4832.4 +,1735881,9.39,Typically Developing Children,Female,116,102,114,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7974.002 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7419.3 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3784.0 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,352.3 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,3.4 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1443667.0 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,171.1 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,174988.83 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,279426.1 +,1735881,9.39,Typically Developing Children,Female,116,102,114,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,270.00006 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,550.6 +,1735881,9.39,Typically Developing Children,Female,116,102,114,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1641.0004 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1465.8 +,1735881,9.39,Typically Developing Children,Female,116,102,114,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4048.001 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3888.4 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61432.1 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12025.7 +,1735881,9.39,Typically Developing Children,Female,116,102,114,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3689.001 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3770.9 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,349.1 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6447.1 +,1735881,9.39,Typically Developing Children,Female,116,102,114,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1645.0004 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1556.8 +,1735881,9.39,Typically Developing Children,Female,116,102,114,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5031.001 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5143.3 +,1735881,9.39,Typically Developing Children,Female,116,102,114,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7860.002 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6975.5 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3795.0 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,445.9 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,13.1 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56067.0 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,962335.1 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,976421.1 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,960504.0 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,346583.44 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,558654.7 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,737395.7 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14086.0 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,559.5 +,1735881,9.39,Typically Developing Children,Female,116,102,114,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,160243.03 +,1735881,9.39,Typically Developing Children,Female,116,102,114,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,608291.1 +,1735881,9.39,Typically Developing Children,Female,116,102,114,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1735881,9.39,Typically Developing Children,Female,116,102,114,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,413115.1 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,876.2 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1985.1 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1737393,11.24,Typically Developing Children,Male,130,128,126,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1109602E7 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1246610.0 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1226049.0 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1225964.1 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20169.5 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1088.7 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,504.2 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,464.9 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,506.8 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,962.6 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,850.4 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1492853.9 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,218201.14 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,289123.16 +,1737393,11.24,Typically Developing Children,Male,130,128,126,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,599.8308 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,646.8 +,1737393,11.24,Typically Developing Children,Male,130,128,126,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,892.4312 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1498.0 +,1737393,11.24,Typically Developing Children,Male,130,128,126,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3922.1753 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4010.6 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,64100.0 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13236.7 +,1737393,11.24,Typically Developing Children,Male,130,128,126,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3680.115 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4107.3 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,291.1 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7874.3 +,1737393,11.24,Typically Developing Children,Male,130,128,126,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1691.7623 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1882.5 +,1737393,11.24,Typically Developing Children,Male,130,128,126,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5103.217 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5119.0 +,1737393,11.24,Typically Developing Children,Male,130,128,126,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7235.21 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7068.5 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3995.5 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,330.4 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,10.0 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1598317.0 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,119.4 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,218256.84 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,287160.97 +,1737393,11.24,Typically Developing Children,Male,130,128,126,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,400.33057 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,808.7 +,1737393,11.24,Typically Developing Children,Male,130,128,126,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,787.3611 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1639.0 +,1737393,11.24,Typically Developing Children,Male,130,128,126,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4065.8157 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4028.1 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63897.3 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13909.6 +,1737393,11.24,Typically Developing Children,Male,130,128,126,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4072.4656 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4188.3 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,398.8 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8201.3 +,1737393,11.24,Typically Developing Children,Male,130,128,126,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1831.4125 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1661.9 +,1737393,11.24,Typically Developing Children,Male,130,128,126,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5237.5474 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5263.1 +,1737393,11.24,Typically Developing Children,Male,130,128,126,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7741.9404 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7139.6 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4025.8 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,576.2 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.0 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58883.0 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1074746.1 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1091853.1 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1071603.0 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,436458.0 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,576284.1 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,763402.1 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,17107.0 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,680.4 +,1737393,11.24,Typically Developing Children,Male,130,128,126,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,164265.86 +,1737393,11.24,Typically Developing Children,Male,130,128,126,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,717038.56 +,1737393,11.24,Typically Developing Children,Male,130,128,126,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1737393,11.24,Typically Developing Children,Male,130,128,126,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,500873.38 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,932.4 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2006.3 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1106453E7 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1289922.0 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1274292.0 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1274354.6 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18793.7 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,872.7 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,653.5 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,537.6 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,584.2 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,962.6 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1021.2 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1565804.0 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,209649.02 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,314475.34 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,496.0907 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,624.0 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,791.3511 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1507.3 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4390.336 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4105.7 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,69426.8 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15794.4 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3584.355 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3482.8 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,230.4 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5857.5 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1908.5526 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1836.8 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5596.6475 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5283.0 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8353.741 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8120.8 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3949.3 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,394.9 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.9 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1677610.0 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,125.7 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,209276.08 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,310423.16 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,383.04053 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,556.0 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,849.87115 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1558.5 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4540.6265 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4379.2 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,69368.8 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,16245.3 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3906.2153 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3752.9 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,270.8 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5090.7 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1800.8225 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1729.9 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5250.847 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5108.5 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8558.562 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7970.3 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3813.9 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,529.4 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,1.8 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59768.0 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1106980.6 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1118785.6 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1103406.0 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,418925.1 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,624898.5 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,824014.5 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11805.0 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1154.3 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,177879.77 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,782018.44 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1740607,10.26,ADHD-Inattentive,Female,119,128,108,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,492505.0 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,833.5 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1999.1 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1011468E7 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1135511.0 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1118845.0 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1118865.4 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18529.7 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,803.9 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,631.6 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,712.0 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,512.4 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,803.9 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,783.4 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1458566.4 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,201344.7 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,254050.73 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,376.17188 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,540.7 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1132.0312 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1668.9 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4104.492 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4058.8 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54504.3 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,18267.1 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3644.8242 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3980.5 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,222.0 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6578.7 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1722.6562 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2182.2 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4969.336 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5253.6 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8091.211 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8106.9 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4187.3 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,402.6 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,22.5 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1480226.0 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,172.3 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,198460.89 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,254138.05 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,291.79688 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,521.7 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1017.77344 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1787.3 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4038.5742 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4273.6 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59801.3 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14747.0 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4110.6445 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4521.6 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,298.9 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5619.0 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1760.4492 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2340.8 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4934.1797 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4907.4 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7537.5 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8536.4 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3894.3 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,471.6 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,8.3 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62457.0 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,973754.4 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,986912.4 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,970278.0 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,399805.6 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,508188.78 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,685888.75 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13158.0 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1138.9 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,176164.45 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,662917.7 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1771270,14.42,ADHD-Inattentive,Male,91,100,84,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,513951.84 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,518.0 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1743.5 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1779922,10.84,Typically Developing Children,Male,124,137,116,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3056242E7 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1351588.0 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1338906.0 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1339575.4 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21473.4 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,987.3 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,545.4 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,640.5 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,566.7 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,924.1 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,645.6 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1649983.4 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,224235.5 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,329027.22 +,1779922,10.84,Typically Developing Children,Male,124,137,116,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,718.0019 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,986.9 +,1779922,10.84,Typically Developing Children,Male,124,137,116,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,970.00256 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1837.8 +,1779922,10.84,Typically Developing Children,Male,124,137,116,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3979.0105 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4807.2 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,67464.5 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14960.9 +,1779922,10.84,Typically Developing Children,Male,124,137,116,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3454.009 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4437.3 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,438.5 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4185.9 +,1779922,10.84,Typically Developing Children,Male,124,137,116,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1634.0043 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1979.7 +,1779922,10.84,Typically Developing Children,Male,124,137,116,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4807.0127 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5295.4 +,1779922,10.84,Typically Developing Children,Male,124,137,116,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9023.023 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7991.3 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4153.8 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,361.7 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,12.4 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1722257.0 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,133.7 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,222981.14 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,337556.5 +,1779922,10.84,Typically Developing Children,Male,124,137,116,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,364.00095 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,918.6 +,1779922,10.84,Typically Developing Children,Male,124,137,116,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1201.0032 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1997.7 +,1779922,10.84,Typically Developing Children,Male,124,137,116,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5060.013 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5079.5 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64476.9 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13680.7 +,1779922,10.84,Typically Developing Children,Male,124,137,116,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4140.0107 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4368.3 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,360.3 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4604.8 +,1779922,10.84,Typically Developing Children,Male,124,137,116,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1913.005 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1758.7 +,1779922,10.84,Typically Developing Children,Male,124,137,116,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5070.013 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5173.2 +,1779922,10.84,Typically Developing Children,Male,124,137,116,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8659.022 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7827.1 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4034.9 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,451.2 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,13.9 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64598.0 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1180722.4 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1190728.4 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1177629.0 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,447216.66 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,666583.75 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,864701.75 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10006.0 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,989.7 +,1779922,10.84,Typically Developing Children,Male,124,137,116,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,158933.4 +,1779922,10.84,Typically Developing Children,Male,124,137,116,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,724387.94 +,1779922,10.84,Typically Developing Children,Male,124,137,116,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1779922,10.84,Typically Developing Children,Male,124,137,116,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,516271.34 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,796.8 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1277.4 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1780174,11.18,ADHD-Combined,Male,107,118,96,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1109952E7 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1253295.0 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1227082.0 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1227269.9 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19452.6 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1098.0 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,600.7 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,598.6 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,551.8 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,930.6 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,896.4 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1547829.6 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,217558.44 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,313022.0 +,1780174,11.18,ADHD-Combined,Male,107,118,96,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,621.11084 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,774.4 +,1780174,11.18,ADHD-Combined,Male,107,118,96,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,611.80084 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1404.3 +,1780174,11.18,ADHD-Combined,Male,107,118,96,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4025.9155 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4513.2 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,46534.8 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10581.8 +,1780174,11.18,ADHD-Combined,Male,107,118,96,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2632.0737 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3506.3 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,253.5 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,11565.7 +,1780174,11.18,ADHD-Combined,Male,107,118,96,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1872.6426 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2494.2 +,1780174,11.18,ADHD-Combined,Male,107,118,96,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5381.1875 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6304.3 +,1780174,11.18,ADHD-Combined,Male,107,118,96,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8070.451 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8400.8 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4458.0 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,339.5 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,38.3 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1685879.0 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,97.7 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,213886.25 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,302901.22 +,1780174,11.18,ADHD-Combined,Male,107,118,96,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,371.0705 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,732.4 +,1780174,11.18,ADHD-Combined,Male,107,118,96,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,680.96094 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1704.1 +,1780174,11.18,ADHD-Combined,Male,107,118,96,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4624.4165 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4712.6 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,46014.9 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,9711.1 +,1780174,11.18,ADHD-Combined,Male,107,118,96,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2594.8335 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3932.7 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,322.8 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,11080.7 +,1780174,11.18,ADHD-Combined,Male,107,118,96,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1736.9824 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2212.5 +,1780174,11.18,ADHD-Combined,Male,107,118,96,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5688.418 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6303.3 +,1780174,11.18,ADHD-Combined,Male,107,118,96,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7999.961 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8592.8 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4601.1 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,389.6 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.7 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66895.0 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1116778.9 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1140216.9 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1114012.0 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,431444.7 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,615923.2 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,776239.2 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,23438.0 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1804.5 +,1780174,11.18,ADHD-Combined,Male,107,118,96,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,157004.06 +,1780174,11.18,ADHD-Combined,Male,107,118,96,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,742105.1 +,1780174,11.18,ADHD-Combined,Male,107,118,96,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1780174,11.18,ADHD-Combined,Male,107,118,96,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,463597.4 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1313.2 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2523.0 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1794770,11.75,Typically Developing Children,Male,84,85,87,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1006158E7 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1455958.0 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1432404.0 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1431484.6 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,24565.8 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,953.1 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,959.1 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,893.9 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,736.9 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1104.5 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1061.0 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1910239.6 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,275244.72 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,325971.78 +,1794770,11.75,Typically Developing Children,Male,84,85,87,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,688.1836 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,686.1 +,1794770,11.75,Typically Developing Children,Male,84,85,87,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,764.64844 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,2230.8 +,1794770,11.75,Typically Developing Children,Male,84,85,87,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3669.4336 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3711.3 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,65135.4 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,17368.0 +,1794770,11.75,Typically Developing Children,Male,84,85,87,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3946.289 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4861.8 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,452.0 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,10773.4 +,1794770,11.75,Typically Developing Children,Male,84,85,87,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1923.0469 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2867.9 +,1794770,11.75,Typically Developing Children,Male,84,85,87,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6300.879 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5893.5 +,1794770,11.75,Typically Developing Children,Male,84,85,87,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8927.93 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9095.7 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4887.9 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,425.9 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,4.9 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1967392.0 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,46.7 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,272393.38 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,323927.78 +,1794770,11.75,Typically Developing Children,Male,84,85,87,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,553.71094 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,580.3 +,1794770,11.75,Typically Developing Children,Male,84,85,87,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1242.7734 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1986.1 +,1794770,11.75,Typically Developing Children,Male,84,85,87,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3731.836 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3813.6 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62427.3 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15977.3 +,1794770,11.75,Typically Developing Children,Male,84,85,87,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4144.922 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,5209.1 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,353.2 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6700.4 +,1794770,11.75,Typically Developing Children,Male,84,85,87,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2145.4102 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2302.6 +,1794770,11.75,Typically Developing Children,Male,84,85,87,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6370.3125 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6582.2 +,1794770,11.75,Typically Developing Children,Male,84,85,87,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8632.617 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9417.7 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,5111.0 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,450.4 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,3.7 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,71587.0 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1273466.6 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1292219.6 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1269996.0 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,547638.06 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,649899.56 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,851315.56 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,18753.0 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,991.1 +,1794770,11.75,Typically Developing Children,Male,84,85,87,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,255799.52 +,1794770,11.75,Typically Developing Children,Male,84,85,87,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,797961.6 +,1794770,11.75,Typically Developing Children,Male,84,85,87,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1794770,11.75,Typically Developing Children,Male,84,85,87,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,663948.6 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1515.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2049.7 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,http://purl.org/nidash/fsl#,Background (mm^3),,,9316282.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1382582.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1358391.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1358690.1 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22462.6 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,887.6 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,753.8 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,617.6 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,561.6 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1038.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1150.4 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1795584.9 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,251699.81 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,310957.28 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,610.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,630.9 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1107.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,2054.6 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4435.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4817.5 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,65078.5 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16560.3 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4334.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4271.4 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,325.1 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8495.5 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2043.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2272.8 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6113.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6094.2 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8850.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9022.2 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4853.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,563.4 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,28.1 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1836670.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,228.7 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,252047.34 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,312603.62 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,447.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,614.6 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2016.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1792.7 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4477.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4691.8 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,65769.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15135.5 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4132.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4501.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,683.9 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,9053.8 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2158.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2154.4 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5903.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5918.3 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8741.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8619.8 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4866.9 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,717.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.4 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68523.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1198351.1 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1217911.1 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1195365.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,503747.16 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,623560.9 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,824182.9 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,19560.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,898.6 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,234373.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,712884.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1809715,13.5,ADHD-Inattentive,Male,105,95,112,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,626126.0 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,850.0 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2032.3 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1842819,10.09,Typically Developing Children,Male,105,92,110,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3058326E7 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1207377.0 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1189185.0 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1189828.2 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22307.4 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1019.7 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,460.8 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,403.1 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,470.9 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,852.7 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,875.2 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1430384.1 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,187516.14 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,293448.4 +,1842819,10.09,Typically Developing Children,Male,105,92,110,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,472.00388 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,792.4 +,1842819,10.09,Typically Developing Children,Male,105,92,110,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1117.0092 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1390.6 +,1842819,10.09,Typically Developing Children,Male,105,92,110,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3827.0315 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4085.6 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,70740.0 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14075.8 +,1842819,10.09,Typically Developing Children,Male,105,92,110,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2854.0234 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3481.4 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,561.5 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6317.4 +,1842819,10.09,Typically Developing Children,Male,105,92,110,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1658.0137 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1785.1 +,1842819,10.09,Typically Developing Children,Male,105,92,110,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4958.041 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5291.7 +,1842819,10.09,Typically Developing Children,Male,105,92,110,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9092.075 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7743.8 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3711.9 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,431.4 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,68.6 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1539511.0 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,190.8 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,187313.66 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,294405.06 +,1842819,10.09,Typically Developing Children,Male,105,92,110,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,527.00433 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,609.7 +,1842819,10.09,Typically Developing Children,Male,105,92,110,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1333.011 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1713.0 +,1842819,10.09,Typically Developing Children,Male,105,92,110,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3986.0327 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4190.5 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,70021.7 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14182.8 +,1842819,10.09,Typically Developing Children,Male,105,92,110,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3683.0303 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3754.8 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,413.0 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6862.9 +,1842819,10.09,Typically Developing Children,Male,105,92,110,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1683.0138 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1634.3 +,1842819,10.09,Typically Developing Children,Male,105,92,110,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5154.0425 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5384.5 +,1842819,10.09,Typically Developing Children,Male,105,92,110,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8637.071 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7379.2 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4016.1 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,393.9 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,65.5 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58852.0 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1023008.25 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1037573.25 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1020830.0 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,374829.78 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,587853.44 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,787721.44 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14565.0 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,719.6 +,1842819,10.09,Typically Developing Children,Male,105,92,110,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,151604.25 +,1842819,10.09,Typically Developing Children,Male,105,92,110,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,566250.7 +,1842819,10.09,Typically Developing Children,Male,105,92,110,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1842819,10.09,Typically Developing Children,Male,105,92,110,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,429374.53 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1058.8 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2091.4 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1482352E7 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1345282.0 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1320575.0 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1320753.2 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,24202.8 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,867.7 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,762.9 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,823.4 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,533.5 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,814.7 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1050.7 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1630401.0 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,244835.94 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,305411.78 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,486.5 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,593.5 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1011.75 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,2008.9 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4092.75 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4371.2 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63457.6 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14161.6 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3124.25 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4591.9 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,407.2 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,13192.2 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1853.5 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2438.3 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6059.0 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6907.6 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7976.0 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9287.0 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,5048.5 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,432.1 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1794146.0 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,196.9 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,240494.33 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,305717.25 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,511.25 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,721.0 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1491.0 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2069.9 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4119.25 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4390.2 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61491.1 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12717.2 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4552.5 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4830.9 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,299.1 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6427.3 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1851.25 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2490.8 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6157.75 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6363.8 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8697.0 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9368.0 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4979.8 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,505.5 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.8 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,71995.0 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1171010.2 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1191593.2 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1168096.0 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,485330.28 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,611129.0 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,809552.0 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,20583.0 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,637.8 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,237734.5 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,738408.25 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1843546,14.08,ADHD-Inattentive,Male,83,85,86,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,648861.25 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,764.6 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1900.8 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1846346,8.91,Typically Developing Children,Female,109,106,100,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3060838E7 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1154979.0 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1141986.0 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1142663.9 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18647.7 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,998.3 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,646.5 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,520.1 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,341.8 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,794.9 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,818.4 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1378616.8 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,196822.28 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,280286.62 +,1846346,8.91,Typically Developing Children,Female,109,106,100,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,559.0062 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,817.8 +,1846346,8.91,Typically Developing Children,Female,109,106,100,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,851.00946 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1534.9 +,1846346,8.91,Typically Developing Children,Female,109,106,100,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3666.0405 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3486.5 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54985.8 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11782.5 +,1846346,8.91,Typically Developing Children,Female,109,106,100,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3003.0332 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3824.4 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,295.4 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4483.7 +,1846346,8.91,Typically Developing Children,Female,109,106,100,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1575.0175 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1846.1 +,1846346,8.91,Typically Developing Children,Female,109,106,100,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5003.0557 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5691.7 +,1846346,8.91,Typically Developing Children,Female,109,106,100,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8006.089 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7485.1 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3588.6 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,546.7 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,12.6 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1506244.0 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,168.0 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,195709.92 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,279645.1 +,1846346,8.91,Typically Developing Children,Female,109,106,100,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,400.00443 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,755.1 +,1846346,8.91,Typically Developing Children,Female,109,106,100,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,886.0098 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1621.2 +,1846346,8.91,Typically Developing Children,Female,109,106,100,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3898.0432 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3664.8 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54407.7 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11582.2 +,1846346,8.91,Typically Developing Children,Female,109,106,100,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3671.0408 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3842.7 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,327.9 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3828.9 +,1846346,8.91,Typically Developing Children,Female,109,106,100,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1655.0183 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1525.1 +,1846346,8.91,Typically Developing Children,Female,109,106,100,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5254.058 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5482.0 +,1846346,8.91,Typically Developing Children,Female,109,106,100,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8080.0894 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7427.1 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3740.9 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,606.5 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.9 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58212.0 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1011940.9 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1021613.9 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1009843.0 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,392532.2 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,559931.7 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,727847.7 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9673.0 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,835.0 +,1846346,8.91,Typically Developing Children,Female,109,106,100,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,137169.52 +,1846346,8.91,Typically Developing Children,Female,109,106,100,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,515773.72 +,1846346,8.91,Typically Developing Children,Female,109,106,100,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1846346,8.91,Typically Developing Children,Female,109,106,100,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,431425.78 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,964.3 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1417.4 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1854959,12.99,Typically Developing Children,Female,105,96,112,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1106446E7 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1225883.0 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1213761.0 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1213525.2 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18714.4 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,846.1 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,549.2 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,673.7 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,369.5 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,633.3 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,897.8 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1557542.9 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,223632.36 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,287548.1 +,1854959,12.99,Typically Developing Children,Female,105,96,112,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,650.3709 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,745.2 +,1854959,12.99,Typically Developing Children,Female,105,96,112,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1028.0914 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1561.1 +,1854959,12.99,Typically Developing Children,Female,105,96,112,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4136.3057 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4024.5 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53561.8 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13912.4 +,1854959,12.99,Typically Developing Children,Female,105,96,112,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3677.455 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3909.7 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,478.0 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4297.6 +,1854959,12.99,Typically Developing Children,Female,105,96,112,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1641.2223 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1935.2 +,1854959,12.99,Typically Developing Children,Female,105,96,112,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5466.3076 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5006.7 +,1854959,12.99,Typically Developing Children,Female,105,96,112,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9014.752 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8133.5 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3819.7 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,445.0 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1607880.0 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,148.2 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,224550.97 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,285724.78 +,1854959,12.99,Typically Developing Children,Female,105,96,112,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,496.0907 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,662.4 +,1854959,12.99,Typically Developing Children,Female,105,96,112,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,913.71124 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1665.1 +,1854959,12.99,Typically Developing Children,Female,105,96,112,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4172.216 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4061.8 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,51343.9 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13203.5 +,1854959,12.99,Typically Developing Children,Female,105,96,112,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3779.8652 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4189.1 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,361.0 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3638.0 +,1854959,12.99,Typically Developing Children,Female,105,96,112,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1843.3826 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1687.6 +,1854959,12.99,Typically Developing Children,Female,105,96,112,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5338.6274 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5159.3 +,1854959,12.99,Typically Developing Children,Female,105,96,112,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8259.312 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7857.8 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3798.0 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,600.0 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.2 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60221.0 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1084531.2 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1093558.2 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1081808.0 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,448183.34 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,573272.9 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,739100.9 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9027.0 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1374.2 +,1854959,12.99,Typically Developing Children,Female,105,96,112,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,177115.02 +,1854959,12.99,Typically Developing Children,Female,105,96,112,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,735229.0 +,1854959,12.99,Typically Developing Children,Female,105,96,112,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1854959,12.99,Typically Developing Children,Female,105,96,112,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,513967.25 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,958.3 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1511.7 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1860323,8.75,Typically Developing Children,Male,131,127,129,http://purl.org/nidash/fsl#,Background (mm^3),,,9315688.0 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1438535.0 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1419750.0 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1421367.5 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20177.9 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1017.6 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,559.5 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,501.1 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,393.6 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,889.6 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1024.2 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1729969.5 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,244195.88 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,359936.4 +,1860323,8.75,Typically Developing Children,Male,131,127,129,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,787.99945 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,655.9 +,1860323,8.75,Typically Developing Children,Male,131,127,129,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1386.999 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1804.1 +,1860323,8.75,Typically Developing Children,Male,131,127,129,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4382.997 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4381.8 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56673.5 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16491.0 +,1860323,8.75,Typically Developing Children,Male,131,127,129,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3919.9973 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3959.7 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,357.2 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7564.9 +,1860323,8.75,Typically Developing Children,Male,131,127,129,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1973.9985 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2197.1 +,1860323,8.75,Typically Developing Children,Male,131,127,129,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6229.9956 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6534.4 +,1860323,8.75,Typically Developing Children,Male,131,127,129,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9599.993 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9068.1 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4127.9 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,410.8 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,40.2 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1855742.0 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,189.4 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,244278.66 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,363745.56 +,1860323,8.75,Typically Developing Children,Male,131,127,129,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,716.9995 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,673.3 +,1860323,8.75,Typically Developing Children,Male,131,127,129,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,947.9993 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1841.3 +,1860323,8.75,Typically Developing Children,Male,131,127,129,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4433.997 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4645.1 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54603.2 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13197.9 +,1860323,8.75,Typically Developing Children,Male,131,127,129,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4313.997 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4411.1 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,263.8 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6622.6 +,1860323,8.75,Typically Developing Children,Male,131,127,129,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1825.9987 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2146.7 +,1860323,8.75,Typically Developing Children,Male,131,127,129,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6032.9956 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6567.6 +,1860323,8.75,Typically Developing Children,Male,131,127,129,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9398.993 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8738.7 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4202.4 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,412.0 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,24.8 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67061.0 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1282655.5 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1298051.5 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1277483.0 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,488474.53 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,723681.94 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,903813.94 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15396.0 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,781.1 +,1860323,8.75,Typically Developing Children,Male,131,127,129,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,223393.84 +,1860323,8.75,Typically Developing Children,Male,131,127,129,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,800914.4 +,1860323,8.75,Typically Developing Children,Male,131,127,129,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1860323,8.75,Typically Developing Children,Male,131,127,129,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,619696.5 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,832.7 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1702.7 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1873761,10.36,ADHD-Combined,Female,126,108,138,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3058167E7 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1277380.0 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1265178.0 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1265959.0 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20381.1 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,793.9 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,473.3 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,535.0 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,567.7 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,675.0 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,857.3 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1559168.8 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,221860.72 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,312958.34 +,1873761,10.36,ADHD-Combined,Female,126,108,138,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,601.99927 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,736.6 +,1873761,10.36,ADHD-Combined,Female,126,108,138,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1201.9985 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1511.7 +,1873761,10.36,ADHD-Combined,Female,126,108,138,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4095.9949 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3836.2 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56189.7 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11091.2 +,1873761,10.36,ADHD-Combined,Female,126,108,138,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3215.996 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3849.9 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,488.9 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3694.7 +,1873761,10.36,ADHD-Combined,Female,126,108,138,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1670.9979 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1951.9 +,1873761,10.36,ADHD-Combined,Female,126,108,138,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5081.9937 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5433.4 +,1873761,10.36,ADHD-Combined,Female,126,108,138,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8365.989 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7387.4 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4073.2 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,420.1 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,37.9 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1620172.0 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,143.7 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,221852.5 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,315809.5 +,1873761,10.36,ADHD-Combined,Female,126,108,138,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,570.99927 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,651.5 +,1873761,10.36,ADHD-Combined,Female,126,108,138,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1080.9987 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1819.1 +,1873761,10.36,ADHD-Combined,Female,126,108,138,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3868.995 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3626.9 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55382.7 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11146.2 +,1873761,10.36,ADHD-Combined,Female,126,108,138,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3857.995 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3994.4 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,259.9 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3660.7 +,1873761,10.36,ADHD-Combined,Female,126,108,138,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1888.9977 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1758.9 +,1873761,10.36,ADHD-Combined,Female,126,108,138,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5296.993 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5530.5 +,1873761,10.36,ADHD-Combined,Female,126,108,138,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8216.989 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7170.3 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3878.6 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,390.5 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.3 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58817.0 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1134101.0 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1142891.0 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1130420.0 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,443713.22 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,628767.8 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,800523.8 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8790.0 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1226.7 +,1873761,10.36,ADHD-Combined,Female,126,108,138,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,160957.8 +,1873761,10.36,ADHD-Combined,Female,126,108,138,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,725943.06 +,1873761,10.36,ADHD-Combined,Female,126,108,138,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1873761,10.36,ADHD-Combined,Female,126,108,138,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,511867.34 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1036.1 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2142.5 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,http://purl.org/nidash/fsl#,Background (mm^3),,,9320365.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1225125.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1206951.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1207930.5 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20442.9 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,833.3 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,756.8 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,649.2 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,471.2 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,973.7 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1011.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1571739.1 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,217940.62 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,283358.94 +,1875013,9.83,Typically Developing Children,Male,130,135,120,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,569.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,518.9 +,1875013,9.83,Typically Developing Children,Male,130,135,120,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1530.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1492.3 +,1875013,9.83,Typically Developing Children,Male,130,135,120,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3971.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4134.4 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57141.2 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12400.5 +,1875013,9.83,Typically Developing Children,Male,130,135,120,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3803.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3743.4 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,508.6 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6719.8 +,1875013,9.83,Typically Developing Children,Male,130,135,120,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1940.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2191.3 +,1875013,9.83,Typically Developing Children,Male,130,135,120,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5397.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6089.6 +,1875013,9.83,Typically Developing Children,Male,130,135,120,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8605.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8009.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4256.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,362.8 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,37.2 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1634192.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,177.7 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,219920.72 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,285136.16 +,1875013,9.83,Typically Developing Children,Male,130,135,120,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,399.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,556.6 +,1875013,9.83,Typically Developing Children,Male,130,135,120,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1359.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1544.2 +,1875013,9.83,Typically Developing Children,Male,130,135,120,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4226.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4311.8 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58365.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12437.7 +,1875013,9.83,Typically Developing Children,Male,130,135,120,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3827.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3875.1 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,483.3 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5881.2 +,1875013,9.83,Typically Developing Children,Male,130,135,120,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1910.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2086.6 +,1875013,9.83,Typically Developing Children,Male,130,135,120,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5540.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6268.1 +,1875013,9.83,Typically Developing Children,Male,130,135,120,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8207.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7456.3 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4401.2 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,366.6 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.6 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62179.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1070153.5 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1084216.5 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1067433.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,437861.34 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,568495.1 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,746125.1 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14063.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,594.3 +,1875013,9.83,Typically Developing Children,Male,130,135,120,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,276481.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,730017.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1875013,9.83,Typically Developing Children,Male,130,135,120,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,553877.0 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,661.5 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1356.1 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1875084,7.17,Typically Developing Children,Female,90,94,85,http://purl.org/nidash/fsl#,Background (mm^3),,,1.11152E7 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1021854.0 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1011880.0 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1011363.44 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15796.4 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,832.4 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,598.4 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,626.5 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,440.0 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,763.9 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,809.4 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1188538.8 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,159823.66 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,255933.67 +,1875084,7.17,Typically Developing Children,Female,90,94,85,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,472.15063 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,620.1 +,1875084,7.17,Typically Developing Children,Female,90,94,85,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,823.2711 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1109.1 +,1875084,7.17,Typically Developing Children,Female,90,94,85,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2941.964 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3500.3 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53115.1 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13385.9 +,1875084,7.17,Typically Developing Children,Female,90,94,85,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3144.1243 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3126.0 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,254.7 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3326.5 +,1875084,7.17,Typically Developing Children,Female,90,94,85,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1682.4523 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1870.4 +,1875084,7.17,Typically Developing Children,Female,90,94,85,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5350.597 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5242.1 +,1875084,7.17,Typically Developing Children,Female,90,94,85,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6731.139 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6359.6 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3365.4 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,440.1 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,21.5 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1375186.0 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,111.0 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,159691.44 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,250885.66 +,1875084,7.17,Typically Developing Children,Female,90,94,85,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,364.4205 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,575.8 +,1875084,7.17,Typically Developing Children,Female,90,94,85,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,373.73053 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1462.4 +,1875084,7.17,Typically Developing Children,Female,90,94,85,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2864.824 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3466.6 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,52548.4 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13219.9 +,1875084,7.17,Typically Developing Children,Female,90,94,85,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3532.4849 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3242.8 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,248.4 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3162.3 +,1875084,7.17,Typically Developing Children,Female,90,94,85,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1820.7725 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1802.0 +,1875084,7.17,Typically Developing Children,Female,90,94,85,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5289.4175 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5227.1 +,1875084,7.17,Typically Developing Children,Female,90,94,85,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6272.2886 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6150.8 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3406.0 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,540.2 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,20.5 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,52477.0 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,882245.44 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,889624.44 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,879231.0 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,319515.1 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,506819.3 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,665492.3 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7379.0 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1342.9 +,1875084,7.17,Typically Developing Children,Female,90,94,85,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,135789.2 +,1875084,7.17,Typically Developing Children,Female,90,94,85,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,633890.8 +,1875084,7.17,Typically Developing Children,Female,90,94,85,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1875084,7.17,Typically Developing Children,Female,90,94,85,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,368697.78 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,898.0 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2296.8 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1884448,8.91,Typically Developing Children,Male,100,109,91,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1114831E7 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1239859.0 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1224013.0 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1223009.5 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16479.8 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1135.2 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,676.3 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,526.0 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,617.7 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1082.8 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,929.4 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1441596.6 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,217490.58 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,306606.1 +,1884448,8.91,Typically Developing Children,Male,100,109,91,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,533.33075 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,710.0 +,1884448,8.91,Typically Developing Children,Male,100,109,91,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,422.94058 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1473.8 +,1884448,8.91,Typically Developing Children,Male,100,109,91,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3906.2153 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4194.9 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,44648.9 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,8989.9 +,1884448,8.91,Typically Developing Children,Male,100,109,91,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,1975.0527 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3826.9 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,865.8 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5251.4 +,1884448,8.91,Typically Developing Children,Male,100,109,91,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1606.6422 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1967.3 +,1884448,8.91,Typically Developing Children,Male,100,109,91,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4990.167 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5867.0 +,1884448,8.91,Typically Developing Children,Male,100,109,91,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6844.1895 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7596.3 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3791.3 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,384.2 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1715082.0 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,117.6 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,219277.02 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,311104.8 +,1884448,8.91,Typically Developing Children,Male,100,109,91,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,317.87042 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,658.7 +,1884448,8.91,Typically Developing Children,Male,100,109,91,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,406.98056 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1576.0 +,1884448,8.91,Typically Developing Children,Male,100,109,91,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4204.1357 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4244.4 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,43943.6 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,8189.5 +,1884448,8.91,Typically Developing Children,Male,100,109,91,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2755.7637 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3987.4 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,493.0 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4821.2 +,1884448,8.91,Typically Developing Children,Male,100,109,91,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1572.0621 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1803.0 +,1884448,8.91,Typically Developing Children,Male,100,109,91,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5528.8174 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6041.8 +,1884448,8.91,Typically Developing Children,Male,100,109,91,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6969.2095 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7156.9 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3652.4 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,650.7 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,6.5 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60533.0 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1119648.5 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1131550.5 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1115883.0 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,436767.6 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,617710.94 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,769531.94 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11902.0 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2003.6 +,1884448,8.91,Typically Developing Children,Male,100,109,91,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,191999.06 +,1884448,8.91,Typically Developing Children,Male,100,109,91,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,692811.25 +,1884448,8.91,Typically Developing Children,Male,100,109,91,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1884448,8.91,Typically Developing Children,Male,100,109,91,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,446224.94 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,735.5 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1768.3 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1916266,13.17,Typically Developing Children,Male,119,109,124,http://purl.org/nidash/fsl#,Background (mm^3),,,9319920.0 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1198104.0 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1187718.0 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1188987.4 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21714.9 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,719.7 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,662.6 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,557.2 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,432.1 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,807.9 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,794.5 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1367855.4 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,203358.92 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,285560.78 +,1916266,13.17,Typically Developing Children,Male,119,109,124,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,566.00055 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,647.2 +,1916266,13.17,Typically Developing Children,Male,119,109,124,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1302.0012 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1570.0 +,1916266,13.17,Typically Developing Children,Male,119,109,124,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3971.004 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3842.6 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58348.2 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15168.2 +,1916266,13.17,Typically Developing Children,Male,119,109,124,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4191.004 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4253.5 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,325.0 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3289.4 +,1916266,13.17,Typically Developing Children,Male,119,109,124,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1723.0016 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2155.6 +,1916266,13.17,Typically Developing Children,Male,119,109,124,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5651.0054 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5884.6 +,1916266,13.17,Typically Developing Children,Male,119,109,124,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8213.008 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7922.9 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4546.7 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,397.4 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,52.6 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1574049.0 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,136.3 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,204688.58 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,285371.12 +,1916266,13.17,Typically Developing Children,Male,119,109,124,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,447.00043 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,728.1 +,1916266,13.17,Typically Developing Children,Male,119,109,124,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1170.0011 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1824.9 +,1916266,13.17,Typically Developing Children,Male,119,109,124,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4095.004 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3748.6 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58398.1 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14913.1 +,1916266,13.17,Typically Developing Children,Male,119,109,124,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4551.0044 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4345.0 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,373.4 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2823.6 +,1916266,13.17,Typically Developing Children,Male,119,109,124,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1912.0018 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2038.0 +,1916266,13.17,Typically Developing Children,Male,119,109,124,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5631.0054 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5828.9 +,1916266,13.17,Typically Developing Children,Male,119,109,124,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8314.008 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7771.1 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4326.0 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,454.6 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,21.4 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62800.0 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1044700.4 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1051929.4 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1040436.0 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,408047.5 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,570931.9 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,751470.9 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7229.0 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1739.1 +,1916266,13.17,Typically Developing Children,Male,119,109,124,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,188797.19 +,1916266,13.17,Typically Developing Children,Male,119,109,124,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,705663.6 +,1916266,13.17,Typically Developing Children,Male,119,109,124,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1916266,13.17,Typically Developing Children,Male,119,109,124,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,534359.5 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1145.3 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1096.1 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1918630,7.55,ADHD-Combined,Male,125,129,115,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1107291E7 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1379899.0 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1349341.0 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1348922.0 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19430.9 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1150.6 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,385.7 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,654.7 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,381.1 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,605.2 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1288.9 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1720154.2 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,233072.77 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,336074.44 +,1918630,7.55,ADHD-Combined,Male,125,129,115,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,291.2704 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,900.8 +,1918630,7.55,ADHD-Combined,Male,125,129,115,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,732.831 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1538.7 +,1918630,7.55,ADHD-Combined,Male,125,129,115,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4176.2056 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4312.2 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60267.2 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15546.7 +,1918630,7.55,ADHD-Combined,Male,125,129,115,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3418.1047 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3733.5 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,561.2 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,11838.2 +,1918630,7.55,ADHD-Combined,Male,125,129,115,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1596.0022 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2351.0 +,1918630,7.55,ADHD-Combined,Male,125,129,115,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6066.138 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6226.0 +,1918630,7.55,ADHD-Combined,Male,125,129,115,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9525.473 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8971.0 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4434.7 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,395.8 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,10.0 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1835677.0 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,235.5 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,231056.56 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,332219.28 +,1918630,7.55,ADHD-Combined,Male,125,129,115,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,188.86026 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,1107.8 +,1918630,7.55,ADHD-Combined,Male,125,129,115,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,341.8105 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1932.7 +,1918630,7.55,ADHD-Combined,Male,125,129,115,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4138.966 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4603.0 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58387.6 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13810.7 +,1918630,7.55,ADHD-Combined,Male,125,129,115,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2980.5342 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3374.5 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,386.3 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,13927.9 +,1918630,7.55,ADHD-Combined,Male,125,129,115,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1707.7224 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2061.9 +,1918630,7.55,ADHD-Combined,Male,125,129,115,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5629.898 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5991.7 +,1918630,7.55,ADHD-Combined,Male,125,129,115,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8779.342 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8727.8 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4494.4 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,411.3 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,13.1 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67425.0 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1203263.0 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1230419.0 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1200072.0 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,464129.3 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,668293.75 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,856167.75 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,27156.0 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1641.7 +,1918630,7.55,ADHD-Combined,Male,125,129,115,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,204213.8 +,1918630,7.55,ADHD-Combined,Male,125,129,115,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,835577.6 +,1918630,7.55,ADHD-Combined,Male,125,129,115,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1918630,7.55,ADHD-Combined,Male,125,129,115,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,556031.2 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,631.3 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1225.2 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1934623,8.45,Typically Developing Children,Female,114,112,111,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1116545E7 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1008301.0 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,998171.0 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,997535.7 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,14932.9 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,892.8 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,570.9 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,537.4 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,351.2 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,624.2 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,754.5 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1206875.6 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,158752.81 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,254010.7 +,1934623,8.45,Typically Developing Children,Female,114,112,111,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,215.45906 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,688.1 +,1934623,8.45,Typically Developing Children,Female,114,112,111,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,561.25757 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1041.4 +,1934623,8.45,Typically Developing Children,Female,114,112,111,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3716.004 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3870.8 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,49821.3 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10461.1 +,1934623,8.45,Typically Developing Children,Female,114,112,111,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3077.6067 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3351.4 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,452.4 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3870.4 +,1934623,8.45,Typically Developing Children,Female,114,112,111,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1423.0938 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1540.2 +,1934623,8.45,Typically Developing Children,Female,114,112,111,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4713.4995 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4871.4 +,1934623,8.45,Typically Developing Children,Female,114,112,111,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6019.5537 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6341.7 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3259.6 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,330.2 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,50.7 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1339104.0 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,119.0 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,159657.9 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,256321.27 +,1934623,8.45,Typically Developing Children,Female,114,112,111,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,400.32825 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,334.8 +,1934623,8.45,Typically Developing Children,Female,114,112,111,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,574.5575 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1019.3 +,1934623,8.45,Typically Developing Children,Female,114,112,111,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3914.1729 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3808.9 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,48733.4 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10530.5 +,1934623,8.45,Typically Developing Children,Female,114,112,111,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3309.0256 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3396.9 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,423.5 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2720.1 +,1934623,8.45,Typically Developing Children,Female,114,112,111,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1486.9335 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1331.6 +,1934623,8.45,Typically Developing Children,Female,114,112,111,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4583.16 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4029.3 +,1934623,8.45,Typically Developing Children,Female,114,112,111,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6260.2827 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6091.1 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3397.5 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,398.8 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.3 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,50355.0 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,881427.7 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,889089.7 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,879679.0 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,318410.72 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,510331.97 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,658885.94 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7662.0 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,594.8 +,1934623,8.45,Typically Developing Children,Female,114,112,111,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,152354.83 +,1934623,8.45,Typically Developing Children,Female,114,112,111,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,630344.1 +,1934623,8.45,Typically Developing Children,Female,114,112,111,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1934623,8.45,Typically Developing Children,Female,114,112,111,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,363547.25 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,736.1 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1511.5 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1962503,8.67,Typically Developing Children,Female,115,110,102,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3062725E7 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1047228.0 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1034069.0 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1034973.06 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16110.8 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,695.5 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,445.9 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,361.4 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,407.9 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,642.5 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,769.5 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1226016.1 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,161297.84 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,259005.45 +,1962503,8.67,Typically Developing Children,Female,115,110,102,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,294.99728 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,675.2 +,1962503,8.67,Typically Developing Children,Female,115,110,102,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,670.9938 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1197.0 +,1962503,8.67,Typically Developing Children,Female,115,110,102,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3908.9639 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2976.0 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,49635.2 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11055.2 +,1962503,8.67,Typically Developing Children,Female,115,110,102,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2837.9739 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3106.2 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,386.8 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4510.6 +,1962503,8.67,Typically Developing Children,Female,115,110,102,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1474.9863 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1762.5 +,1962503,8.67,Typically Developing Children,Female,115,110,102,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4902.9546 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5214.1 +,1962503,8.67,Typically Developing Children,Female,115,110,102,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7658.929 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7776.5 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3484.5 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,285.8 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,54.5 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1326663.0 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,83.7 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,165820.88 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,269788.9 +,1962503,8.67,Typically Developing Children,Female,115,110,102,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,299.99722 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,541.5 +,1962503,8.67,Typically Developing Children,Female,115,110,102,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,964.9911 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1625.6 +,1962503,8.67,Typically Developing Children,Female,115,110,102,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3861.9644 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3804.8 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,49410.2 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11378.1 +,1962503,8.67,Typically Developing Children,Female,115,110,102,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3340.9692 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3359.3 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,280.8 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4284.9 +,1962503,8.67,Typically Developing Children,Female,115,110,102,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1577.9855 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1713.3 +,1962503,8.67,Typically Developing Children,Female,115,110,102,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4764.956 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5100.6 +,1962503,8.67,Typically Developing Children,Female,115,110,102,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7792.928 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7653.4 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3359.7 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,500.7 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,36.9 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55827.0 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,915146.06 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,925308.06 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,910831.0 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,327118.72 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,528794.4 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,686214.4 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10162.0 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1559.9 +,1962503,8.67,Typically Developing Children,Female,115,110,102,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,128475.81 +,1962503,8.67,Typically Developing Children,Female,115,110,102,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,454757.8 +,1962503,8.67,Typically Developing Children,Female,115,110,102,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1962503,8.67,Typically Developing Children,Female,115,110,102,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,367448.6 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,734.4 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1834.2 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1988015,11.17,Typically Developing Children,Male,99,108,100,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3056255E7 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1175528.0 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1164922.0 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1165320.5 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19034.7 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,668.8 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,649.3 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,458.8 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,545.2 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,878.5 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,530.2 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1336558.9 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,194986.28 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,288067.72 +,1988015,11.17,Typically Developing Children,Male,99,108,100,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,623.9987 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,851.8 +,1988015,11.17,Typically Developing Children,Male,99,108,100,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1144.9976 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1888.3 +,1988015,11.17,Typically Developing Children,Male,99,108,100,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4304.991 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4026.9 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56098.7 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11305.1 +,1988015,11.17,Typically Developing Children,Male,99,108,100,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3457.9927 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4394.2 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,382.0 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3213.8 +,1988015,11.17,Typically Developing Children,Male,99,108,100,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1834.9962 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1996.7 +,1988015,11.17,Typically Developing Children,Male,99,108,100,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5433.989 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5938.9 +,1988015,11.17,Typically Developing Children,Male,99,108,100,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8993.981 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8639.0 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4023.3 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,404.7 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,34.5 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1499482.0 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,184.6 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,196579.47 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,289030.1 +,1988015,11.17,Typically Developing Children,Male,99,108,100,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,471.99902 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,760.1 +,1988015,11.17,Typically Developing Children,Male,99,108,100,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1237.9974 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1946.3 +,1988015,11.17,Typically Developing Children,Male,99,108,100,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3973.9917 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4360.0 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53575.2 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10440.0 +,1988015,11.17,Typically Developing Children,Male,99,108,100,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3752.9922 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4476.7 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,482.8 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3000.8 +,1988015,11.17,Typically Developing Children,Male,99,108,100,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1820.9962 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1674.9 +,1988015,11.17,Typically Developing Children,Male,99,108,100,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5326.989 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5832.6 +,1988015,11.17,Typically Developing Children,Male,99,108,100,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8537.982 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8291.4 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4126.6 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,503.4 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,10.5 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64990.0 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1035919.56 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1043569.56 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1033144.0 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,391565.75 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,577097.8 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,752836.8 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7650.0 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,824.5 +,1988015,11.17,Typically Developing Children,Male,99,108,100,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,201190.58 +,1988015,11.17,Typically Developing Children,Male,99,108,100,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,640032.7 +,1988015,11.17,Typically Developing Children,Male,99,108,100,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1988015,11.17,Typically Developing Children,Male,99,108,100,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,462845.03 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,686.1 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1164.8 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1992284,7.26,ADHD-Combined,Male,115,106,120,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1114715E7 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1091575.0 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1082983.0 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1082965.8 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,14079.0 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,702.2 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,710.0 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,680.7 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,360.2 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,712.0 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,725.3 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1296962.5 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,179545.75 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,273806.53 +,1992284,7.26,ADHD-Combined,Male,115,106,120,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,539.9807 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,683.4 +,1992284,7.26,ADHD-Combined,Male,115,106,120,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,651.7009 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1428.5 +,1992284,7.26,ADHD-Combined,Male,115,106,120,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3137.4744 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3328.6 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,48879.9 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,9494.1 +,1992284,7.26,ADHD-Combined,Male,115,106,120,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3654.845 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3712.7 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,419.6 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2802.1 +,1992284,7.26,ADHD-Combined,Male,115,106,120,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1598.6622 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2013.5 +,1992284,7.26,ADHD-Combined,Male,115,106,120,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5151.097 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4884.8 +,1992284,7.26,ADHD-Combined,Male,115,106,120,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6890.7393 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7256.0 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3407.8 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,292.6 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.8 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1428999.0 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,156.5 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,180107.75 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,277203.72 +,1992284,7.26,ADHD-Combined,Male,115,106,120,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,412.30057 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,515.2 +,1992284,7.26,ADHD-Combined,Male,115,106,120,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,516.0407 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1630.3 +,1992284,7.26,ADHD-Combined,Male,115,106,120,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3037.724 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3520.1 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,48517.3 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,9326.1 +,1992284,7.26,ADHD-Combined,Male,115,106,120,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3262.4944 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3840.1 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,227.1 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2481.3 +,1992284,7.26,ADHD-Combined,Male,115,106,120,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1683.7823 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1696.3 +,1992284,7.26,ADHD-Combined,Male,115,106,120,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5254.8374 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5493.7 +,1992284,7.26,ADHD-Combined,Male,115,106,120,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6357.4087 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7201.0 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3367.9 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,398.9 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.7 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55750.0 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,969108.75 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,975317.75 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,966303.0 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,359653.5 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,551010.25 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,704981.25 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6209.0 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1041.3 +,1992284,7.26,ADHD-Combined,Male,115,106,120,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,142659.98 +,1992284,7.26,ADHD-Combined,Male,115,106,120,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,691118.2 +,1992284,7.26,ADHD-Combined,Male,115,106,120,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1992284,7.26,ADHD-Combined,Male,115,106,120,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,414915.34 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1219.4 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1953.2 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1995121,11.43,Typically Developing Children,Male,127,119,130,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1105838E7 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1242524.0 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1229706.0 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1229245.6 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19119.5 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,726.5 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,586.3 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,623.4 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,546.4 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,856.3 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,970.4 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1538515.4 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,211074.64 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,290170.06 +,1995121,11.43,Typically Developing Children,Male,127,119,130,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,668.9909 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,774.0 +,1995121,11.43,Typically Developing Children,Male,127,119,130,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,796.6711 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1688.4 +,1995121,11.43,Typically Developing Children,Male,127,119,130,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4061.8257 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3904.1 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63110.3 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16160.7 +,1995121,11.43,Typically Developing Children,Male,127,119,130,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3970.0554 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3914.9 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,575.1 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4230.5 +,1995121,11.43,Typically Developing Children,Male,127,119,130,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1891.2626 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2042.5 +,1995121,11.43,Typically Developing Children,Male,127,119,130,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5719.008 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5960.5 +,1995121,11.43,Typically Developing Children,Male,127,119,130,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8364.382 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7950.7 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4257.9 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,448.2 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,13.0 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1627517.0 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,101.4 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,215057.42 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,296226.5 +,1995121,11.43,Typically Developing Children,Male,127,119,130,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,446.8806 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,694.5 +,1995121,11.43,Typically Developing Children,Male,127,119,130,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,490.7707 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2078.4 +,1995121,11.43,Typically Developing Children,Male,127,119,130,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4180.196 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3727.2 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62084.5 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12413.5 +,1995121,11.43,Typically Developing Children,Male,127,119,130,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,5753.588 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4181.6 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,497.0 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3206.5 +,1995121,11.43,Typically Developing Children,Male,127,119,130,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1862.0026 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1896.5 +,1995121,11.43,Typically Developing Children,Male,127,119,130,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5829.398 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6049.9 +,1995121,11.43,Typically Developing Children,Male,127,119,130,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6990.4897 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8126.7 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4031.7 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,635.1 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63285.0 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1078832.6 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1087718.6 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1076176.0 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,426132.06 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,586396.56 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,775479.56 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8886.0 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1237.9 +,1995121,11.43,Typically Developing Children,Male,127,119,130,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,169504.75 +,1995121,11.43,Typically Developing Children,Male,127,119,130,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,719487.1 +,1995121,11.43,Typically Developing Children,Male,127,119,130,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1995121,11.43,Typically Developing Children,Male,127,119,130,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,470752.8 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,691.7 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,3069.3 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1747783E7 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1171706.0 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1160974.0 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1161830.9 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17703.1 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,858.6 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,648.1 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,607.0 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,402.2 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,715.4 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,527.1 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1314804.9 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,195812.56 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,286673.03 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,381.99844 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,680.7 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,967.99603 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1685.8 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3723.9846 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3306.6 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57381.2 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10858.9 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4241.9824 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3827.9 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,390.6 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2622.2 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1700.993 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1747.2 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5288.978 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5712.2 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8005.9673 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7099.8 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3701.1 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,446.9 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,22.1 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1481743.0 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,137.0 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,195798.06 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,288787.22 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,438.9982 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,678.8 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1209.995 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1589.8 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3938.984 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3711.6 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59159.6 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10657.4 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3777.9844 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4010.9 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,376.6 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2657.9 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1754.9928 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1475.1 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5581.977 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5689.5 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7633.9688 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7109.4 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3720.6 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,511.6 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,9.5 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57276.0 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1025594.9 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1032210.9 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1023393.0 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,391610.62 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,575460.25 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,749406.25 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6616.0 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,830.5 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,168842.31 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,684778.2 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,1996183,11.04,ADHD-Inattentive,Male,112,123,116,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,469518.1 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,658.9 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1867.3 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2014113,10.35,ADHD-Combined,Male,102,106,108,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3054649E7 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1272338.0 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1261839.0 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1262752.5 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19364.6 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,808.4 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,704.0 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,598.5 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,505.1 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,886.6 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,635.8 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1524711.0 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,212939.72 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,313460.47 +,2014113,10.35,ADHD-Combined,Male,102,106,108,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,663.9953 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,839.3 +,2014113,10.35,ADHD-Combined,Male,102,106,108,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1130.992 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1672.3 +,2014113,10.35,ADHD-Combined,Male,102,106,108,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4675.967 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4492.1 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61057.4 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13397.5 +,2014113,10.35,ADHD-Combined,Male,102,106,108,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3429.9756 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3970.3 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,214.8 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3360.8 +,2014113,10.35,ADHD-Combined,Male,102,106,108,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1858.9868 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1927.1 +,2014113,10.35,ADHD-Combined,Male,102,106,108,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5503.961 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5936.9 +,2014113,10.35,ADHD-Combined,Male,102,106,108,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8933.937 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8270.5 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3669.8 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,377.3 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,27.8 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1613930.0 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,156.1 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,214182.39 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,313985.97 +,2014113,10.35,ADHD-Combined,Male,102,106,108,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,581.99585 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,879.3 +,2014113,10.35,ADHD-Combined,Male,102,106,108,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,704.995 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1764.0 +,2014113,10.35,ADHD-Combined,Male,102,106,108,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4976.965 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4491.0 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59457.6 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11721.2 +,2014113,10.35,ADHD-Combined,Male,102,106,108,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3803.973 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4076.6 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,348.9 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3145.1 +,2014113,10.35,ADHD-Combined,Male,102,106,108,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1866.9868 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1652.1 +,2014113,10.35,ADHD-Combined,Male,102,106,108,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5670.96 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5783.6 +,2014113,10.35,ADHD-Combined,Male,102,106,108,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8653.938 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7971.8 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3691.9 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,429.0 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,31.1 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62850.0 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1119205.5 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1126694.5 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1116391.0 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,427122.1 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,627446.44 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,811203.44 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7489.0 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,903.7 +,2014113,10.35,ADHD-Combined,Male,102,106,108,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,180508.7 +,2014113,10.35,ADHD-Combined,Male,102,106,108,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,550293.1 +,2014113,10.35,ADHD-Combined,Male,102,106,108,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2014113,10.35,ADHD-Combined,Male,102,106,108,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,456153.75 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,808.1 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1703.3 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2018106,11.66,Typically Developing Children,Male,114,110,108,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3057159E7 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1224543.0 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1212592.0 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1212707.0 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20381.9 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,835.6 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,653.0 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,435.5 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,481.3 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,880.9 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1019.9 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1489191.8 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,215229.39 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,284312.22 +,2018106,11.66,Typically Developing Children,Male,114,110,108,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,608.00385 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,776.0 +,2018106,11.66,Typically Developing Children,Male,114,110,108,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,664.0042 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1603.8 +,2018106,11.66,Typically Developing Children,Male,114,110,108,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4004.0254 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3822.3 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62227.2 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13753.7 +,2018106,11.66,Typically Developing Children,Male,114,110,108,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3548.0225 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3729.0 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,254.9 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3755.6 +,2018106,11.66,Typically Developing Children,Male,114,110,108,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1803.0114 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1890.4 +,2018106,11.66,Typically Developing Children,Male,114,110,108,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5450.0347 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5704.0 +,2018106,11.66,Typically Developing Children,Male,114,110,108,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8761.056 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8702.8 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3759.2 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,450.7 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,37.4 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1586136.0 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,176.7 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,212972.08 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,285533.25 +,2018106,11.66,Typically Developing Children,Male,114,110,108,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,536.00336 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,738.2 +,2018106,11.66,Typically Developing Children,Male,114,110,108,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1009.00635 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2036.6 +,2018106,11.66,Typically Developing Children,Male,114,110,108,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4010.0254 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4050.5 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62596.8 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14104.3 +,2018106,11.66,Typically Developing Children,Male,114,110,108,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3754.0237 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3801.3 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,289.3 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3844.5 +,2018106,11.66,Typically Developing Children,Male,114,110,108,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1757.0111 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1854.8 +,2018106,11.66,Typically Developing Children,Male,114,110,108,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5495.0347 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5361.3 +,2018106,11.66,Typically Developing Children,Male,114,110,108,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8724.055 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8796.9 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3793.7 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,304.7 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.2 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62563.0 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1062191.0 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1070702.0 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1060362.0 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,428201.47 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,569845.5 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,757417.5 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8511.0 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1730.9 +,2018106,11.66,Typically Developing Children,Male,114,110,108,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,199177.27 +,2018106,11.66,Typically Developing Children,Male,114,110,108,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,548272.44 +,2018106,11.66,Typically Developing Children,Male,114,110,108,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,14.0 +,2018106,11.66,Typically Developing Children,Male,114,110,108,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,484470.1 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,744.1 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1998.5 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2026113,12.99,ADHD-Combined,Female,106,108,122,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3058499E7 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1164216.0 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1146689.0 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1147215.8 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19352.8 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,759.5 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,393.4 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,401.2 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,527.3 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,807.3 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,932.0 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1516269.0 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,195877.16 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,273721.47 +,2026113,12.99,ADHD-Combined,Female,106,108,122,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,546.00024 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,658.5 +,2026113,12.99,ADHD-Combined,Female,106,108,122,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,970.0005 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1467.4 +,2026113,12.99,ADHD-Combined,Female,106,108,122,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3483.0017 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3404.8 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61527.9 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13607.4 +,2026113,12.99,ADHD-Combined,Female,106,108,122,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3406.0017 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3271.9 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,321.5 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7261.0 +,2026113,12.99,ADHD-Combined,Female,106,108,122,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1711.0009 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1809.3 +,2026113,12.99,ADHD-Combined,Female,106,108,122,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5467.0024 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5409.9 +,2026113,12.99,ADHD-Combined,Female,106,108,122,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8294.004 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7526.4 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3630.9 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,422.0 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,7.5 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1551650.0 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,80.8 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,197032.02 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,276172.16 +,2026113,12.99,ADHD-Combined,Female,106,108,122,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,459.0002 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,589.1 +,2026113,12.99,ADHD-Combined,Female,106,108,122,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1072.0005 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1614.5 +,2026113,12.99,ADHD-Combined,Female,106,108,122,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4004.002 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3925.5 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59391.8 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12842.7 +,2026113,12.99,ADHD-Combined,Female,106,108,122,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3753.0017 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3656.1 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,198.3 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5706.3 +,2026113,12.99,ADHD-Combined,Female,106,108,122,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1806.0009 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1756.2 +,2026113,12.99,ADHD-Combined,Female,106,108,122,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5586.0024 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5217.0 +,2026113,12.99,ADHD-Combined,Female,106,108,122,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8150.004 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7080.1 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4054.0 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,501.6 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,8.2 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57090.0 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1001590.8 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1015633.8 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,999301.0 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,392909.16 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,549893.6 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,728838.6 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14043.0 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,606.1 +,2026113,12.99,ADHD-Combined,Female,106,108,122,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,205063.11 +,2026113,12.99,ADHD-Combined,Female,106,108,122,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,612912.3 +,2026113,12.99,ADHD-Combined,Female,106,108,122,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2026113,12.99,ADHD-Combined,Female,106,108,122,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,472198.22 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1131.8 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1588.5 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2030383,13.56,ADHD-Combined,Male,131,114,141,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1105523E7 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1325740.0 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1302431.0 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1302506.2 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21805.0 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,824.6 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,607.9 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,608.1 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,505.0 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,910.3 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1205.5 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1649541.9 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,228344.73 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,311776.62 +,2030383,13.56,ADHD-Combined,Male,131,114,141,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,522.69073 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,635.1 +,2030383,13.56,ADHD-Combined,Male,131,114,141,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,950.9513 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1414.7 +,2030383,13.56,ADHD-Combined,Male,131,114,141,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4134.9756 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4219.5 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63288.6 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,17011.3 +,2030383,13.56,ADHD-Combined,Male,131,114,141,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3388.8447 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3502.8 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,607.3 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,12433.3 +,2030383,13.56,ADHD-Combined,Male,131,114,141,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2053.523 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2144.5 +,2030383,13.56,ADHD-Combined,Male,131,114,141,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5470.2974 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5064.5 +,2030383,13.56,ADHD-Combined,Male,131,114,141,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8792.643 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8163.1 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4332.0 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,614.2 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,9.3 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1774427.0 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,150.7 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,228413.4 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,310256.53 +,2030383,13.56,ADHD-Combined,Male,131,114,141,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,416.2906 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,607.6 +,2030383,13.56,ADHD-Combined,Male,131,114,141,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,974.89136 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1686.9 +,2030383,13.56,ADHD-Combined,Male,131,114,141,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4169.5557 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4103.0 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63778.4 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,17244.6 +,2030383,13.56,ADHD-Combined,Male,131,114,141,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4325.166 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4168.1 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,665.0 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5244.2 +,2030383,13.56,ADHD-Combined,Male,131,114,141,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1931.1626 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1988.1 +,2030383,13.56,ADHD-Combined,Male,131,114,141,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5435.7173 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5273.5 +,2030383,13.56,ADHD-Combined,Male,131,114,141,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8774.022 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8331.7 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4079.3 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,737.7 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,3.9 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61949.0 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1144140.2 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1163747.2 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1140544.0 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,456758.12 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,622033.1 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,812434.1 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,19607.0 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1870.5 +,2030383,13.56,ADHD-Combined,Male,131,114,141,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,232479.0 +,2030383,13.56,ADHD-Combined,Male,131,114,141,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,736866.25 +,2030383,13.56,ADHD-Combined,Male,131,114,141,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2030383,13.56,ADHD-Combined,Male,131,114,141,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,527796.6 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,748.1 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1317.1 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,http://purl.org/nidash/fsl#,Background (mm^3),,,9321346.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1337364.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1325152.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1326374.2 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19628.8 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1094.4 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,884.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,936.5 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,583.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1087.4 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,866.7 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1620000.6 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,259261.16 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,308162.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,557.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,620.5 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1000.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1767.9 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3629.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3590.3 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,50855.5 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12955.2 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4065.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4282.2 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,508.3 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4564.5 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1932.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2337.9 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5677.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5651.7 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7980.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8562.9 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4141.9 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,357.9 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.6 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1690823.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,166.8 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,259150.06 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,308205.1 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,491.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,570.5 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1379.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1845.2 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3483.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3662.7 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,51014.1 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12526.1 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4889.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4995.5 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,309.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3643.3 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1911.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2277.3 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5662.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5962.1 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7647.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7940.4 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4353.5 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,436.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,21.2 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63979.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1201398.2 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1210829.2 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1197409.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,518411.22 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,616367.1 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,783363.1 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9431.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,916.8 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,195179.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,735786.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2031422,10.92,ADHD-Inattentive,Male,126,109,136,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,601459.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,798.4 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2134.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,2.7 +,2033178,11.33,Typically Developing Children,Male,132,127,130,http://purl.org/nidash/fsl#,Background (mm^3),,,9323915.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1145193.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1129956.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1130828.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20142.3 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,958.4 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,608.4 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,466.1 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,550.7 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,905.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,687.2 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1427518.8 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,195844.94 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,267289.1 +,2033178,11.33,Typically Developing Children,Male,132,127,130,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,469.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,504.9 +,2033178,11.33,Typically Developing Children,Male,132,127,130,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,851.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1662.5 +,2033178,11.33,Typically Developing Children,Male,132,127,130,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3936.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4139.8 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59818.2 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12893.3 +,2033178,11.33,Typically Developing Children,Male,132,127,130,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3293.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3887.1 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,295.3 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6054.9 +,2033178,11.33,Typically Developing Children,Male,132,127,130,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1816.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1941.7 +,2033178,11.33,Typically Developing Children,Male,132,127,130,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5383.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5692.4 +,2033178,11.33,Typically Developing Children,Male,132,127,130,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8001.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7366.9 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3800.8 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,288.5 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,21.1 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1506735.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,128.9 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,193203.5 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,269540.44 +,2033178,11.33,Typically Developing Children,Male,132,127,130,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,353.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,567.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,792.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1646.1 +,2033178,11.33,Typically Developing Children,Male,132,127,130,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4222.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4378.4 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60892.6 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12606.3 +,2033178,11.33,Typically Developing Children,Male,132,127,130,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3489.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3835.3 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,429.1 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4604.3 +,2033178,11.33,Typically Developing Children,Male,132,127,130,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1940.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1807.3 +,2033178,11.33,Typically Developing Children,Male,132,127,130,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5712.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5553.9 +,2033178,11.33,Typically Developing Children,Male,132,127,130,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7476.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7515.8 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3927.8 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,431.4 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,7.3 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59538.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,987200.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,998897.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,984452.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,389048.44 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,536829.56 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,717054.56 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11697.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,571.9 +,2033178,11.33,Typically Developing Children,Male,132,127,130,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,204977.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,680342.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2033178,11.33,Typically Developing Children,Male,132,127,130,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,505597.0 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1191.6 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1354.2 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2054438,8.11,ADHD-Combined,Male,102,103,101,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1116002E7 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1262847.0 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1243174.0 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1242148.8 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15774.4 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1092.4 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,614.4 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,836.1 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,648.4 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,962.5 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,827.8 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1404870.5 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,229214.56 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,287946.03 +,2054438,8.11,ADHD-Combined,Male,102,103,101,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,458.85065 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,758.9 +,2054438,8.11,ADHD-Combined,Male,102,103,101,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1187.6917 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1383.1 +,2054438,8.11,ADHD-Combined,Male,102,103,101,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2052.1929 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4322.9 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53575.5 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13933.4 +,2054438,8.11,ADHD-Combined,Male,102,103,101,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2521.6836 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4036.6 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,348.8 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,9012.5 +,2054438,8.11,ADHD-Combined,Male,102,103,101,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1267.4917 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1991.3 +,2054438,8.11,ADHD-Combined,Male,102,103,101,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,2687.9336 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6351.8 +,2054438,8.11,ADHD-Combined,Male,102,103,101,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8825.893 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7694.8 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4258.9 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,624.1 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,5.3 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1706740.0 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,143.5 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,227916.42 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,296291.72 +,2054438,8.11,ADHD-Combined,Male,102,103,101,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,490.7707 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,757.1 +,2054438,8.11,ADHD-Combined,Male,102,103,101,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1268.8218 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1716.7 +,2054438,8.11,ADHD-Combined,Male,102,103,101,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3802.4753 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4567.2 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55042.9 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12630.8 +,2054438,8.11,ADHD-Combined,Male,102,103,101,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3528.4949 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4125.4 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,483.1 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5785.1 +,2054438,8.11,ADHD-Combined,Male,102,103,101,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,855.19116 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1967.0 +,2054438,8.11,ADHD-Combined,Male,102,103,101,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,2840.8838 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6413.5 +,2054438,8.11,ADHD-Combined,Male,102,103,101,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9073.272 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7957.9 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4211.4 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,755.0 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,4.3 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64353.0 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1110003.8 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1126541.8 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1106589.0 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,457131.0 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,584237.75 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,758662.75 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,16538.0 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1203.5 +,2054438,8.11,ADHD-Combined,Male,102,103,101,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,180041.02 +,2054438,8.11,ADHD-Combined,Male,102,103,101,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,702742.4 +,2054438,8.11,ADHD-Combined,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2054438,8.11,ADHD-Combined,Male,102,103,101,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,480818.28 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,889.5 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2214.2 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2081148,9.43,ADHD-Combined,Female,88,98,81,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3059141E7 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1226421.0 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1206586.0 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1206812.8 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17769.5 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,779.9 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,352.9 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,434.7 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,495.1 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,743.4 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,865.3 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1461217.5 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,204077.3 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,300171.12 +,2081148,9.43,ADHD-Combined,Female,88,98,81,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,437.0037 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,899.2 +,2081148,9.43,ADHD-Combined,Female,88,98,81,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1182.01 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1649.7 +,2081148,9.43,ADHD-Combined,Female,88,98,81,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3891.033 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3799.7 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58845.3 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12623.0 +,2081148,9.43,ADHD-Combined,Female,88,98,81,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3884.033 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3958.5 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,449.5 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7892.6 +,2081148,9.43,ADHD-Combined,Female,88,98,81,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1703.0144 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1797.0 +,2081148,9.43,ADHD-Combined,Female,88,98,81,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5004.0425 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5432.7 +,2081148,9.43,ADHD-Combined,Female,88,98,81,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7793.066 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7963.5 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4005.4 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,336.3 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,33.4 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1587625.0 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,200.7 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,200521.08 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,301854.25 +,2081148,9.43,ADHD-Combined,Female,88,98,81,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,453.00385 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,876.1 +,2081148,9.43,ADHD-Combined,Female,88,98,81,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1088.0092 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1804.8 +,2081148,9.43,ADHD-Combined,Female,88,98,81,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4193.0356 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3935.4 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56050.1 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11767.2 +,2081148,9.43,ADHD-Combined,Female,88,98,81,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3896.033 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3836.6 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,374.0 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6937.7 +,2081148,9.43,ADHD-Combined,Female,88,98,81,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1729.0146 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1622.7 +,2081148,9.43,ADHD-Combined,Female,88,98,81,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5310.045 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5514.5 +,2081148,9.43,ADHD-Combined,Female,88,98,81,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7607.0645 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7652.7 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4003.8 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,350.1 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,21.2 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60819.0 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1069198.8 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1085141.8 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1067055.0 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,404598.38 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,602025.4 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,778779.4 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15943.0 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,918.9 +,2081148,9.43,ADHD-Combined,Female,88,98,81,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,195965.67 +,2081148,9.43,ADHD-Combined,Female,88,98,81,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,663869.6 +,2081148,9.43,ADHD-Combined,Female,88,98,81,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2081148,9.43,ADHD-Combined,Female,88,98,81,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,491713.2 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1115.2 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1691.8 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21002,11.72,ADHD-Combined,Male,97,89,105,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1110346E7 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1137779.0 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1120153.0 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1119867.8 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16106.8 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,820.0 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,291.6 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,531.9 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,353.0 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,693.0 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,982.0 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1247126.0 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,191244.94 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,275380.6 +,21002,11.72,ADHD-Combined,Male,97,89,105,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,634.4072 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,706.0 +,21002,11.72,ADHD-Combined,Male,97,89,105,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,739.4768 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1426.2 +,21002,11.72,ADHD-Combined,Male,97,89,105,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3830.3833 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3928.7 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55275.6 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12902.4 +,21002,11.72,ADHD-Combined,Male,97,89,105,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3734.6238 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4133.4 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,333.2 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6591.5 +,21002,11.72,ADHD-Combined,Male,97,89,105,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1521.5134 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1587.1 +,21002,11.72,ADHD-Combined,Male,97,89,105,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4782.659 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4779.7 +,21002,11.72,ADHD-Combined,Male,97,89,105,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7948.0454 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6810.1 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3614.7 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,545.7 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1530064.0 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,146.3 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,190134.27 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,273367.97 +,21002,11.72,ADHD-Combined,Male,97,89,105,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,583.86743 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,712.4 +,21002,11.72,ADHD-Combined,Male,97,89,105,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,775.3866 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1654.1 +,21002,11.72,ADHD-Combined,Male,97,89,105,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4132.292 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4061.7 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53357.5 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12186.0 +,21002,11.72,ADHD-Combined,Male,97,89,105,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4008.6025 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4238.2 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,230.8 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6336.1 +,21002,11.72,ADHD-Combined,Male,97,89,105,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1706.3826 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1545.4 +,21002,11.72,ADHD-Combined,Male,97,89,105,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4569.86 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4704.9 +,21002,11.72,ADHD-Combined,Male,97,89,105,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7486.5376 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6851.0 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3488.2 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,578.3 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,38.2 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56334.0 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,989331.75 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1003405.75 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,986614.0 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,381379.22 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,548748.56 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,714111.56 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14074.0 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1018.3 +,21002,11.72,ADHD-Combined,Male,97,89,105,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,166285.19 +,21002,11.72,ADHD-Combined,Male,97,89,105,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,656550.3 +,21002,11.72,ADHD-Combined,Male,97,89,105,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21002,11.72,ADHD-Combined,Male,97,89,105,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,427372.34 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,649.3 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1435.2 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1110939E7 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1130659.0 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1120957.0 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1120642.0 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17449.2 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1011.1 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,635.2 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,621.7 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,398.7 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,764.0 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,695.7 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1323444.8 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,197116.14 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,268243.28 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,401.66055 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,760.3 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,813.9611 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1586.7 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4406.296 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4071.8 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55859.4 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12285.1 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4100.3955 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4140.8 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,457.9 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3262.3 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1739.6423 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2061.7 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4846.527 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4461.7 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7176.69 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6724.9 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3816.7 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,466.3 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1482025.0 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,100.4 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,195324.08 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,271069.5 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,349.79047 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,795.9 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,921.6913 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1612.7 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3628.245 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4242.2 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,52220.8 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10583.6 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3791.8352 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4280.1 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,275.4 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2503.4 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1848.7025 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1723.8 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5008.787 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4810.5 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6890.7393 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6976.0 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3498.4 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,545.5 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,11.7 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57499.0 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,992726.0 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,999755.0 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,989466.0 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,392440.22 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,539312.75 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,706520.75 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7029.0 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1370.7 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,144193.48 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,658928.1 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21003,9.11,ADHD-Inattentive,Female,117,119,111,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,447122.7 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,841.2 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1903.7 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21005,11.03,Typically Developing Children,Male,107,107,105,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1107191E7 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1342529.0 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1329141.0 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1329240.1 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18740.5 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,934.5 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,655.2 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,853.6 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,577.9 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1018.5 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,841.8 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1613785.0 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,236172.56 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,318657.3 +,21005,11.03,Typically Developing Children,Male,107,107,105,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,583.8708 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,896.2 +,21005,11.03,Typically Developing Children,Male,107,107,105,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1098.5815 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1987.3 +,21005,11.03,Typically Developing Children,Male,107,107,105,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3807.7952 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4502.2 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63706.9 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13193.9 +,21005,11.03,Typically Developing Children,Male,107,107,105,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3548.4448 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4640.0 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,462.4 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4428.7 +,21005,11.03,Typically Developing Children,Male,107,107,105,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1981.7028 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2076.6 +,21005,11.03,Typically Developing Children,Male,107,107,105,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5793.488 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5718.5 +,21005,11.03,Typically Developing Children,Male,107,107,105,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7606.2803 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9001.7 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4303.7 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,577.1 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,31.2 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1705687.0 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,147.5 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,235008.7 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,319282.5 +,21005,11.03,Typically Developing Children,Male,107,107,105,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,152.95021 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,836.4 +,21005,11.03,Typically Developing Children,Male,107,107,105,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,756.77106 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2249.9 +,21005,11.03,Typically Developing Children,Male,107,107,105,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4212.1157 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4768.0 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62647.4 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12085.0 +,21005,11.03,Typically Developing Children,Male,107,107,105,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3625.585 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4374.7 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,436.2 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4103.7 +,21005,11.03,Typically Developing Children,Male,107,107,105,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1713.0424 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1955.1 +,21005,11.03,Typically Developing Children,Male,107,107,105,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6257.6587 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5883.5 +,21005,11.03,Typically Developing Children,Male,107,107,105,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8534.622 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8861.4 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4318.4 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,553.7 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.9 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68680.0 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1180859.1 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1190889.1 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1177571.0 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,471181.25 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,637939.8 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,833549.8 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10030.0 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1151.8 +,21005,11.03,Typically Developing Children,Male,107,107,105,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,154199.08 +,21005,11.03,Typically Developing Children,Male,107,107,105,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,767331.25 +,21005,11.03,Typically Developing Children,Male,107,107,105,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,2.9 +,21005,11.03,Typically Developing Children,Male,107,107,105,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,537698.44 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,804.5 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1656.1 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21006,9.81,ADHD-Combined,Male,108,108,106,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1112959E7 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1201287.0 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1188028.0 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1188170.2 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17229.4 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,959.8 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,433.8 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,485.5 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,559.6 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,834.2 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,810.9 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1469931.0 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,206364.48 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,297837.34 +,21006,9.81,ADHD-Combined,Male,108,108,106,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,629.0873 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,686.4 +,21006,9.81,ADHD-Combined,Male,108,108,106,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,710.2169 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1305.9 +,21006,9.81,ADHD-Combined,Male,108,108,106,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3302.3755 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3407.3 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54669.1 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11222.2 +,21006,9.81,ADHD-Combined,Male,108,108,106,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3730.6338 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3682.6 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,376.2 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4935.6 +,21006,9.81,ADHD-Combined,Male,108,108,106,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1298.0743 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1569.4 +,21006,9.81,ADHD-Combined,Male,108,108,106,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4726.7993 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5090.7 +,21006,9.81,ADHD-Combined,Male,108,108,106,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7733.9165 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7413.1 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3617.0 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,472.6 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,12.7 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1627476.0 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,156.1 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,205825.17 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,298175.25 +,21006,9.81,ADHD-Combined,Male,108,108,106,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,538.64764 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,567.6 +,21006,9.81,ADHD-Combined,Male,108,108,106,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,714.2069 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1511.1 +,21006,9.81,ADHD-Combined,Male,108,108,106,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3214.596 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3380.9 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,48193.3 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10151.9 +,21006,9.81,ADHD-Combined,Male,108,108,106,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3519.1646 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3785.1 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,314.1 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4079.6 +,21006,9.81,ADHD-Combined,Male,108,108,106,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1577.3732 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1542.9 +,21006,9.81,ADHD-Combined,Male,108,108,106,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5004.768 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4917.5 +,21006,9.81,ADHD-Combined,Male,108,108,106,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7140.739 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7106.7 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3742.2 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,496.1 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.1 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55490.0 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1066290.2 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1076433.2 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1063414.0 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,412189.66 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,596012.6 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,755738.6 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10143.0 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,898.7 +,21006,9.81,ADHD-Combined,Male,108,108,106,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,165971.31 +,21006,9.81,ADHD-Combined,Male,108,108,106,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,703346.1 +,21006,9.81,ADHD-Combined,Male,108,108,106,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21006,9.81,ADHD-Combined,Male,108,108,106,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,452211.34 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,816.9 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2268.0 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21007,10.52,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1101221E7 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1330258.0 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1311779.0 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1311922.4 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22809.4 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1353.8 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,532.5 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,597.6 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,648.7 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,971.4 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,814.0 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1623851.1 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,226509.34 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,311931.22 +,21007,10.52,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,668.9909 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,856.7 +,21007,10.52,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,823.2711 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1628.0 +,21007,10.52,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4813.277 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4751.1 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,68591.6 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13811.4 +,21007,10.52,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4149.6055 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4606.6 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,205.8 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6192.6 +,21007,10.52,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2024.2628 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2148.9 +,21007,10.52,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6723.159 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6600.8 +,21007,10.52,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9333.953 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8187.6 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4694.1 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,707.0 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,33.6 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1701869.0 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,127.7 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,228600.58 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,313393.28 +,21007,10.52,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,458.85065 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,670.4 +,21007,10.52,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,325.85046 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1860.5 +,21007,10.52,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4661.6562 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4870.5 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,67163.0 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13011.5 +,21007,10.52,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,5069.967 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4916.7 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,362.6 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7156.0 +,21007,10.52,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1929.8326 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2116.1 +,21007,10.52,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6696.559 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6494.0 +,21007,10.52,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7964.051 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8756.9 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4636.9 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,766.0 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,45.4 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,70142.0 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1153042.4 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1167863.4 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1150358.0 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,455109.9 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,625324.5 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,831171.5 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14821.0 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1038.2 +,21007,10.52,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,173787.34 +,21007,10.52,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,787721.5 +,21007,10.52,Typically Developing Children,Male,111,119,102,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,2.5 +,21007,10.52,Typically Developing Children,Male,111,119,102,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,544798.0 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,770.7 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1717.5 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1108427E7 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1098720.0 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1087641.0 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1087347.4 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16555.8 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,833.7 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,532.9 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,601.0 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,502.7 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,782.5 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,820.2 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1293305.2 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,196690.95 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,263421.9 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,307.2304 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,614.8 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,377.72052 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1494.6 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4440.876 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4180.5 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,44744.5 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,9785.7 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4001.9756 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3965.2 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,333.9 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3751.3 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1936.4827 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2146.9 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5617.9277 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5989.1 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7417.4204 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7623.4 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4034.1 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,566.7 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,21.3 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1523291.0 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,123.9 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,196925.6 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,260682.89 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,316.54044 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,676.5 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,844.55115 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1816.0 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4666.9766 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4254.2 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,43089.3 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,9394.4 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3766.5652 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4400.2 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,238.9 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2936.4 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1810.1324 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2008.2 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5472.9575 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5984.2 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7459.9805 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7670.2 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3938.9 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,650.1 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,17.7 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62740.0 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,982457.3 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,990408.3 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,980642.0 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,393616.53 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,524104.78 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,675205.8 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7951.0 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1357.4 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,163409.34 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,656929.1 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21008,11.28,ADHD-Combined,Male,N/A,N/A,N/A,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,450467.62 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,901.8 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2565.4 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21009,11.65,ADHD-Combined,Female,107,109,104,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1112189E7 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1066064.0 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1051837.0 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1051818.0 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16228.0 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,796.3 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,391.8 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,433.4 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,447.4 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,728.5 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,664.6 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1251614.1 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,178885.73 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,253047.84 +,21009,11.65,ADHD-Combined,Female,107,109,104,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,388.36053 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,611.8 +,21009,11.65,ADHD-Combined,Female,107,109,104,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,726.181 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1279.1 +,21009,11.65,ADHD-Combined,Female,107,109,104,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3978.0354 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4172.5 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,50139.5 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14156.5 +,21009,11.65,ADHD-Combined,Female,107,109,104,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2879.4539 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3382.9 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,314.8 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5370.6 +,21009,11.65,ADHD-Combined,Female,107,109,104,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1697.0823 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1798.4 +,21009,11.65,ADHD-Combined,Female,107,109,104,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4959.5767 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4943.5 +,21009,11.65,ADHD-Combined,Female,107,109,104,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7054.3296 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7011.3 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3878.5 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,476.1 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,25.4 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1401897.0 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,151.1 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,180953.66 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,254399.69 +,21009,11.65,ADHD-Combined,Female,107,109,104,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,309.89044 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,762.4 +,21009,11.65,ADHD-Combined,Female,107,109,104,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,578.5508 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1438.6 +,21009,11.65,ADHD-Combined,Female,107,109,104,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4415.606 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4320.1 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,48729.8 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14016.0 +,21009,11.65,ADHD-Combined,Female,107,109,104,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3646.865 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3854.2 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,229.7 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4063.7 +,21009,11.65,ADHD-Combined,Female,107,109,104,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1669.1523 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1693.6 +,21009,11.65,ADHD-Combined,Female,107,109,104,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5151.097 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4839.3 +,21009,11.65,ADHD-Combined,Female,107,109,104,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7220.58 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6904.5 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3980.2 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,534.1 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,11.4 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56650.0 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,927542.94 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,937926.94 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,923870.0 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,359839.4 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,507447.53 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,664367.56 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10384.0 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,897.6 +,21009,11.65,ADHD-Combined,Female,107,109,104,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,163998.53 +,21009,11.65,ADHD-Combined,Female,107,109,104,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,603943.2 +,21009,11.65,ADHD-Combined,Female,107,109,104,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21009,11.65,ADHD-Combined,Female,107,109,104,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,398594.9 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,797.9 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2359.2 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1105318E7 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1244363.0 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1221619.0 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1221079.2 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21086.4 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1172.4 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,610.3 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,691.6 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,609.0 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,752.1 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,767.2 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1551788.4 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,242418.7 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,258885.62 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,601.1608 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,723.9 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1087.9415 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1778.2 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3524.505 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3648.6 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60291.4 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15354.5 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3581.6948 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3585.7 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,405.8 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,10146.4 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1963.0828 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2115.8 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5788.168 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6018.9 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9066.622 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8779.1 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4703.7 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,512.7 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,50.6 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1610498.0 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,125.5 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,244842.1 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,259387.78 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,514.7107 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,607.7 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,879.1312 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1846.7 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3601.645 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3537.5 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59869.7 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15518.5 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3950.1055 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4111.7 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,313.1 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7483.3 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1755.6024 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2045.7 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6010.2783 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5707.6 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9220.902 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8769.9 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4662.3 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,632.6 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,45.5 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64803.0 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1073554.2 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1092612.2 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1070829.0 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,487260.8 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,518273.4 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,703726.44 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,19058.0 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,847.0 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,194589.9 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,645681.3 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21010,15.69,ADHD-Inattentive,Male,100,89,110,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,551611.6 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1079.1 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2580.0 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21013,7.51,ADHD-Combined,Male,103,103,103,http://purl.org/nidash/fsl#,Background (mm^3),,,1.111119E7 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1261821.0 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1244583.0 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1244575.5 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16584.9 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,556.3 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,371.1 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,870.9 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,392.1 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,403.3 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1086.9 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1536660.4 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,205084.66 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,314605.88 +,21013,7.51,ADHD-Combined,Male,103,103,103,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,679.6309 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,726.0 +,21013,7.51,ADHD-Combined,Male,103,103,103,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,665.0009 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1464.3 +,21013,7.51,ADHD-Combined,Male,103,103,103,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3766.5652 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3646.9 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61862.3 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12007.4 +,21013,7.51,ADHD-Combined,Male,103,103,103,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3382.1946 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3808.4 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,364.3 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5380.6 +,21013,7.51,ADHD-Combined,Male,103,103,103,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1351.2819 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1742.8 +,21013,7.51,ADHD-Combined,Male,103,103,103,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5652.508 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5892.6 +,21013,7.51,ADHD-Combined,Male,103,103,103,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7854.9907 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7718.3 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3935.1 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,374.9 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,1.0 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1661695.0 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,122.9 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,203649.73 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,313950.2 +,21013,7.51,ADHD-Combined,Male,103,103,103,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,352.4505 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,771.3 +,21013,7.51,ADHD-Combined,Male,103,103,103,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,428.2606 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1732.6 +,21013,7.51,ADHD-Combined,Male,103,103,103,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3767.8953 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3719.5 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62311.6 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11395.8 +,21013,7.51,ADHD-Combined,Male,103,103,103,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2939.304 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3707.0 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,306.7 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6210.3 +,21013,7.51,ADHD-Combined,Male,103,103,103,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1545.4622 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1505.4 +,21013,7.51,ADHD-Combined,Male,103,103,103,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5887.918 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5798.9 +,21013,7.51,ADHD-Combined,Male,103,103,103,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7400.1304 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7514.8 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3921.3 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,615.1 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,2.5 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59961.0 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1100150.5 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1112806.5 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1097135.0 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,408734.4 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,628556.06 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,813423.06 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12656.0 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1528.0 +,21013,7.51,ADHD-Combined,Male,103,103,103,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,149977.66 +,21013,7.51,ADHD-Combined,Male,103,103,103,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,774803.2 +,21013,7.51,ADHD-Combined,Male,103,103,103,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21013,7.51,ADHD-Combined,Male,103,103,103,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,477529.2 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1028.8 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2244.9 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21014,15.93,ADHD-Combined,Male,87,70,109,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1110212E7 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1205335.0 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1188246.0 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1188394.8 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17738.3 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,977.2 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,775.5 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,819.0 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,613.6 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,952.0 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1215.1 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1437706.2 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,223599.95 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,287019.34 +,21014,15.93,ADHD-Combined,Male,87,70,109,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,579.87744 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,769.2 +,21014,15.93,ADHD-Combined,Male,87,70,109,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,703.56696 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1352.2 +,21014,15.93,ADHD-Combined,Male,87,70,109,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4440.8506 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4414.4 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,39575.6 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,9301.1 +,21014,15.93,ADHD-Combined,Male,87,70,109,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3726.6438 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3906.5 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,553.1 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5967.2 +,21014,15.93,ADHD-Combined,Male,87,70,109,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1725.0024 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2076.5 +,21014,15.93,ADHD-Combined,Male,87,70,109,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5192.2974 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5842.5 +,21014,15.93,ADHD-Combined,Male,87,70,109,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6841.49 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7749.5 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3814.0 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,512.2 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,10.7 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1685584.0 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,117.7 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,223743.67 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,290377.84 +,21014,15.93,ADHD-Combined,Male,87,70,109,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,434.9081 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,679.7 +,21014,15.93,ADHD-Combined,Male,87,70,109,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1024.0956 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1584.0 +,21014,15.93,ADHD-Combined,Male,87,70,109,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4752.0693 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4573.7 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,41777.5 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,9086.4 +,21014,15.93,ADHD-Combined,Male,87,70,109,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3160.0662 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4000.0 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,350.4 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5423.3 +,21014,15.93,ADHD-Combined,Male,87,70,109,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1755.5923 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1725.5 +,21014,15.93,ADHD-Combined,Male,87,70,109,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5508.836 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5884.8 +,21014,15.93,ADHD-Combined,Male,87,70,109,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6743.071 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7659.6 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4169.9 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,592.7 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,10.2 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62443.0 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1090359.8 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1103213.8 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1086934.0 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,447343.62 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,577397.2 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,723412.2 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12854.0 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1467.9 +,21014,15.93,ADHD-Combined,Male,87,70,109,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,197369.81 +,21014,15.93,ADHD-Combined,Male,87,70,109,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,635842.3 +,21014,15.93,ADHD-Combined,Male,87,70,109,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21014,15.93,ADHD-Combined,Male,87,70,109,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,460229.88 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,977.3 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1974.1 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21015,9.3,ADHD-Combined,Male,119,122,116,http://purl.org/nidash/fsl#,Background (mm^3),,,1.110808E7 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1164378.0 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1150653.0 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1150077.2 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19022.5 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,973.6 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,691.9 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,714.7 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,472.0 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,862.1 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1221.9 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1377644.6 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,205447.6 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,273765.97 +,21015,9.3,ADHD-Combined,Male,119,122,116,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,512.0507 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,717.8 +,21015,9.3,ADHD-Combined,Male,119,122,116,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,674.3109 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1378.0 +,21015,9.3,ADHD-Combined,Male,119,122,116,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4302.556 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4114.0 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52074.2 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11853.2 +,21015,9.3,ADHD-Combined,Male,119,122,116,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4011.2856 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4266.5 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,358.9 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4132.4 +,21015,9.3,ADHD-Combined,Male,119,122,116,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1790.1825 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1837.8 +,21015,9.3,ADHD-Combined,Male,119,122,116,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5623.2476 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5775.8 +,21015,9.3,ADHD-Combined,Male,119,122,116,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7538.45 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7363.2 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3964.1 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,416.9 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1597446.0 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,60.5 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,204697.92 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,275574.8 +,21015,9.3,ADHD-Combined,Male,119,122,116,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,325.85046 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,685.3 +,21015,9.3,ADHD-Combined,Male,119,122,116,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1097.2515 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1706.0 +,21015,9.3,ADHD-Combined,Male,119,122,116,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4370.386 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4156.5 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54675.8 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12064.4 +,21015,9.3,ADHD-Combined,Male,119,122,116,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3918.1853 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4075.2 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,489.2 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4312.1 +,21015,9.3,ADHD-Combined,Male,119,122,116,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1802.1525 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1661.0 +,21015,9.3,ADHD-Combined,Male,119,122,116,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5538.1274 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5634.9 +,21015,9.3,ADHD-Combined,Male,119,122,116,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7280.43 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7253.9 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4255.1 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,563.8 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,4.1 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60491.0 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1022236.3 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1032002.3 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1020495.0 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,410145.5 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,549340.8 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,716974.8 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9766.0 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1019.8 +,21015,9.3,ADHD-Combined,Male,119,122,116,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,162528.89 +,21015,9.3,ADHD-Combined,Male,119,122,116,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,667603.75 +,21015,9.3,ADHD-Combined,Male,119,122,116,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21015,9.3,ADHD-Combined,Male,119,122,116,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,462904.47 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,853.1 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1641.9 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21016,16.55,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1102926E7 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1315603.0 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1290481.0 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1290838.5 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22543.7 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,909.3 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,536.3 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,479.3 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,599.1 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,979.1 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,952.0 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1667910.2 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,258825.44 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,284997.75 +,21016,16.55,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,698.251 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,716.8 +,21016,16.55,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1179.7117 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1940.2 +,21016,16.55,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3860.9954 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3754.5 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55151.4 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14975.4 +,21016,16.55,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4307.876 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4629.9 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,437.4 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,11412.1 +,21016,16.55,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2198.493 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2102.3 +,21016,16.55,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5756.248 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5763.4 +,21016,16.55,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8332.462 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7456.4 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4478.2 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,633.5 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,9.2 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1776026.0 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,119.7 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,260764.4 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,284400.88 +,21016,16.55,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,565.2508 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,651.9 +,21016,16.55,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1477.6321 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1942.0 +,21016,16.55,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4021.9255 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3871.3 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54170.7 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14449.2 +,21016,16.55,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,5153.7573 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,5043.3 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,471.6 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8744.0 +,21016,16.55,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2159.9229 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1963.1 +,21016,16.55,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5729.648 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5752.5 +,21016,16.55,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8496.052 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7711.3 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4338.9 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,640.7 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,24.5 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63970.0 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1154589.5 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1176576.5 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1152518.0 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,519589.84 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,569398.6 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,743119.6 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,21987.0 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,881.9 +,21016,16.55,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,241453.86 +,21016,16.55,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,722339.94 +,21016,16.55,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21016,16.55,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,597414.2 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,923.8 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1513.5 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1112284E7 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1028554.0 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1017674.0 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1017519.2 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17930.5 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,725.7 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,666.5 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,472.2 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,394.8 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,718.9 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,975.4 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1277475.4 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,176442.42 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,243174.75 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,395.01056 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,532.7 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,808.6411 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1442.5 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3465.9849 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3190.2 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52268.6 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13550.8 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3211.9543 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3267.4 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,251.8 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3472.5 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1433.742 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1692.6 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4975.5366 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4752.4 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7851.001 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6255.8 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3917.5 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,432.9 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,14.9 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1364489.0 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,77.7 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,174153.33 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,241295.67 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,477.47064 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,517.3 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,767.4111 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1443.7 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3505.8848 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3403.3 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,51244.3 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13403.1 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3073.6343 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3228.2 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,269.5 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3510.7 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1611.9622 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1510.3 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5385.1772 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4971.6 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7616.9204 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6186.0 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3685.4 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,457.7 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.9 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,51848.0 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,889431.2 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,897118.2 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,887005.0 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,350595.75 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,484470.44 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,640751.44 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7687.0 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,848.6 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,154499.66 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,614100.44 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21017,11.11,ADHD-Inattentive,Female,100,101,98,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,406922.03 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,649.5 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1341.5 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21018,11.73,Typically Developing Children,Male,116,116,113,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1118521E7 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1148445.0 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1138189.0 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1138409.0 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15836.1 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,848.4 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,637.7 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,596.0 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,457.7 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,648.5 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,625.7 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1428345.0 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,194479.0 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,287332.97 +,21018,11.73,Typically Developing Children,Male,116,116,113,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,268.66037 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,604.9 +,21018,11.73,Typically Developing Children,Male,116,116,113,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,607.81085 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1339.5 +,21018,11.73,Typically Developing Children,Male,116,116,113,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2560.2534 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3075.7 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,51219.2 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10448.1 +,21018,11.73,Typically Developing Children,Male,116,116,113,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3199.9844 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3492.4 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,326.3 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3674.9 +,21018,11.73,Typically Developing Children,Male,116,116,113,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1290.1018 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1735.0 +,21018,11.73,Typically Developing Children,Male,116,116,113,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4768.0566 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4948.7 +,21018,11.73,Typically Developing Children,Male,116,116,113,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6579.519 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6630.1 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3931.5 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,312.6 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,2.5 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1497538.0 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,160.0 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,195798.58 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,287944.4 +,21018,11.73,Typically Developing Children,Male,116,116,113,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,360.43048 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,607.5 +,21018,11.73,Typically Developing Children,Male,116,116,113,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,843.2212 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1651.9 +,21018,11.73,Typically Developing Children,Male,116,116,113,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2606.8037 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3267.0 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,46834.0 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,9271.8 +,21018,11.73,Typically Developing Children,Male,116,116,113,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2352.7732 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3659.1 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,350.7 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3261.3 +,21018,11.73,Typically Developing Children,Male,116,116,113,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1494.9221 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1656.7 +,21018,11.73,Typically Developing Children,Male,116,116,113,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5280.1074 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5198.9 +,21018,11.73,Typically Developing Children,Male,116,116,113,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6129.9785 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6667.3 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3644.7 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,461.8 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,2.1 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,54061.0 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1023550.94 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1031422.94 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1019245.0 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,390277.6 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,575277.4 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,729191.4 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7872.0 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1242.4 +,21018,11.73,Typically Developing Children,Male,116,116,113,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,161375.77 +,21018,11.73,Typically Developing Children,Male,116,116,113,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,705558.0 +,21018,11.73,Typically Developing Children,Male,116,116,113,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21018,11.73,Typically Developing Children,Male,116,116,113,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,437145.0 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,928.8 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1984.8 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21019,15.53,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1099625E7 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1346785.0 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1331624.0 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1331963.6 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,25210.5 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1328.1 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,871.7 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,743.2 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,776.6 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1135.2 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,981.8 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1623850.4 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,266225.16 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,286364.03 +,21019,15.53,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,591.8508 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,724.5 +,21019,15.53,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,956.2713 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1917.4 +,21019,15.53,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4615.1064 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4630.2 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63853.3 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15616.4 +,21019,15.53,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4818.5967 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4609.9 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,447.0 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5268.7 +,21019,15.53,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2316.8633 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2432.1 +,21019,15.53,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6352.089 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6304.2 +,21019,15.53,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9103.862 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8566.6 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4844.8 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,567.6 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,3.8 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1826418.0 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,151.8 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,262303.0 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,287972.47 +,21019,15.53,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,566.5808 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,697.7 +,21019,15.53,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,925.6813 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2204.1 +,21019,15.53,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4850.5166 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4617.8 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63352.8 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,16349.3 +,21019,15.53,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4466.146 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4891.1 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,425.2 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4636.4 +,21019,15.53,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2114.703 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2121.0 +,21019,15.53,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6498.389 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6342.0 +,21019,15.53,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9062.633 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8382.5 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4641.3 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,735.1 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,35.8 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,70218.0 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1175293.6 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1186797.6 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1172627.0 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,528528.2 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,574336.5 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,772549.5 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11504.0 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1007.0 +,21019,15.53,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,243560.58 +,21019,15.53,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,731127.25 +,21019,15.53,Typically Developing Children,Male,107,99,112,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21019,15.53,Typically Developing Children,Male,107,99,112,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,601094.3 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,916.8 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2311.9 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21020,15.42,Typically Developing Children,Female,85,67,108,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1108246E7 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1354830.0 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1338455.0 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1339168.1 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,23093.9 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1262.7 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,769.2 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,747.3 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,756.6 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1341.2 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,989.9 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1730404.0 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,269443.8 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,290426.28 +,21020,15.42,Typically Developing Children,Female,85,67,108,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,239.40033 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,840.8 +,21020,15.42,Typically Developing Children,Female,85,67,108,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1307.3918 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1836.7 +,21020,15.42,Typically Developing Children,Female,85,67,108,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3274.4646 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4216.3 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58770.8 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15038.0 +,21020,15.42,Typically Developing Children,Female,85,67,108,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3493.9148 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4024.2 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,486.4 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5713.4 +,21020,15.42,Typically Developing Children,Female,85,67,108,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1347.2919 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2353.0 +,21020,15.42,Typically Developing Children,Female,85,67,108,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6055.4985 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6258.0 +,21020,15.42,Typically Developing Children,Female,85,67,108,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8531.962 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9089.8 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4739.8 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,527.9 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,4.0 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1761592.0 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,159.8 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,269028.75 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,291859.22 +,21020,15.42,Typically Developing Children,Female,85,67,108,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,369.7405 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,761.2 +,21020,15.42,Typically Developing Children,Female,85,67,108,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,637.07086 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2091.8 +,21020,15.42,Typically Developing Children,Female,85,67,108,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3359.5847 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4474.8 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59522.0 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15001.2 +,21020,15.42,Typically Developing Children,Female,85,67,108,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4662.9863 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4362.6 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,355.2 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5289.4 +,21020,15.42,Typically Developing Children,Female,85,67,108,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1416.4519 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2225.1 +,21020,15.42,Typically Developing Children,Female,85,67,108,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5958.408 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6243.8 +,21020,15.42,Typically Developing Children,Female,85,67,108,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7964.051 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9478.2 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4683.9 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,539.3 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,9.4 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,69839.0 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1194232.1 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1206670.1 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1189753.0 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,538472.56 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,582285.5 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,771644.5 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12438.0 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1190.3 +,21020,15.42,Typically Developing Children,Female,85,67,108,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,191518.94 +,21020,15.42,Typically Developing Children,Female,85,67,108,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,735449.8 +,21020,15.42,Typically Developing Children,Female,85,67,108,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21020,15.42,Typically Developing Children,Female,85,67,108,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,602796.75 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,835.0 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1382.4 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1099062E7 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1502036.0 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1472599.0 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1473071.6 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,24849.9 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1368.3 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,594.1 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,633.7 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,501.8 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1411.9 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1658.8 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1877944.1 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,284456.84 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,333933.66 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,642.39087 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,713.3 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1137.1516 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,2085.2 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4661.6562 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4723.8 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,66529.9 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,17544.8 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4323.836 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,5638.9 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,523.3 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,12799.5 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2199.823 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2105.8 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5874.618 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5702.5 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,10082.744 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,10177.9 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,5092.6 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,705.8 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,29.8 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1957408.0 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,207.8 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,282777.66 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,333828.44 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,368.41052 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,638.1 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,657.0209 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2196.6 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4921.007 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4785.0 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63193.1 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15728.7 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4890.4165 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,5488.6 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,361.2 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,11149.4 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2282.2832 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2141.0 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5979.6885 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5987.4 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9780.833 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9939.7 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,5104.8 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,750.6 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,22.2 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,75086.0 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1313152.6 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1338925.6 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1309437.0 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,567234.5 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,667762.06 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,873508.06 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,25773.0 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1168.3 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,223702.31 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,830243.0 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21021,15.03,ADHD-Inattentive,Male,115,109,116,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,639589.9 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,608.5 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1266.7 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21022,9.62,ADHD-Combined,Female,99,92,105,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1113529E7 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1005586.0 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,997931.0 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,997707.2 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16210.9 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,658.8 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,524.2 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,459.2 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,362.2 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,600.9 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,630.2 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1245214.5 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,156222.5 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,250625.94 +,21022,9.62,ADHD-Combined,Female,99,92,105,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,425.6006 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,721.8 +,21022,9.62,ADHD-Combined,Female,99,92,105,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1082.6215 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1436.7 +,21022,9.62,ADHD-Combined,Female,99,92,105,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3447.3647 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3306.5 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55642.6 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11058.5 +,21022,9.62,ADHD-Combined,Female,99,92,105,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2886.104 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3438.2 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,267.7 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2485.7 +,21022,9.62,ADHD-Combined,Female,99,92,105,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1532.1621 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1681.6 +,21022,9.62,ADHD-Combined,Female,99,92,105,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5160.407 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5384.2 +,21022,9.62,ADHD-Combined,Female,99,92,105,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6975.8594 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6856.6 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3843.0 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,290.3 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,5.0 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1308807.0 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,94.8 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,156628.28 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,248170.45 +,21022,9.62,ADHD-Combined,Female,99,92,105,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,293.93042 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,651.3 +,21022,9.62,ADHD-Combined,Female,99,92,105,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1110.5515 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1462.0 +,21022,9.62,ADHD-Combined,Female,99,92,105,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3700.0652 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3484.1 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54585.7 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10490.0 +,21022,9.62,ADHD-Combined,Female,99,92,105,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2787.6838 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3346.5 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,320.9 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2149.2 +,21022,9.62,ADHD-Combined,Female,99,92,105,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1544.1321 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1589.9 +,21022,9.62,ADHD-Combined,Female,99,92,105,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5028.737 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5421.0 +,21022,9.62,ADHD-Combined,Female,99,92,105,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7360.23 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6769.2 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3730.3 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,228.2 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,9.9 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,54889.0 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,868426.2 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,873761.2 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,866680.0 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,312850.78 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,498796.4 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,664006.4 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,5335.0 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,782.0 +,21022,9.62,ADHD-Combined,Female,99,92,105,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,122384.11 +,21022,9.62,ADHD-Combined,Female,99,92,105,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,649280.3 +,21022,9.62,ADHD-Combined,Female,99,92,105,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21022,9.62,ADHD-Combined,Female,99,92,105,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,385211.1 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,743.3 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1477.0 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21023,8.11,ADHD-Combined,Male,116,114,115,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1115489E7 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1127385.0 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1116208.0 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1116283.0 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15331.9 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,646.6 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,569.1 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,480.8 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,470.9 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,851.9 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,853.5 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1270608.4 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,199046.72 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,271107.97 +,21023,8.11,ADHD-Combined,Male,116,114,115,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,642.3872 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,743.4 +,21023,8.11,ADHD-Combined,Male,116,114,115,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,752.77673 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1148.4 +,21023,8.11,ADHD-Combined,Male,116,114,115,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3777.1836 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3811.3 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,50100.1 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11699.5 +,21023,8.11,ADHD-Combined,Male,116,114,115,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2949.9272 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3141.6 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,212.3 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3205.5 +,21023,8.11,ADHD-Combined,Male,116,114,115,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1725.0024 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1641.6 +,21023,8.11,ADHD-Combined,Male,116,114,115,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5036.688 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5016.9 +,21023,8.11,ADHD-Combined,Male,116,114,115,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6282.8926 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6987.2 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3217.0 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,450.1 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1449514.0 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,127.2 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,200724.58 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,269489.78 +,21023,8.11,ADHD-Combined,Male,116,114,115,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,531.9977 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,656.1 +,21023,8.11,ADHD-Combined,Male,116,114,115,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,396.33826 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1379.5 +,21023,8.11,ADHD-Combined,Male,116,114,115,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3190.656 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4123.6 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,49145.7 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11307.3 +,21023,8.11,ADHD-Combined,Male,116,114,115,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2597.4788 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3091.5 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,259.7 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4215.0 +,21023,8.11,ADHD-Combined,Male,116,114,115,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1626.5829 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1592.1 +,21023,8.11,ADHD-Combined,Male,116,114,115,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5128.4575 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4986.9 +,21023,8.11,ADHD-Combined,Male,116,114,115,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6672.581 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6923.3 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3332.8 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,401.5 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,7.4 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,53724.0 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,996572.06 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1004829.06 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,993894.0 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,399771.28 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,540597.75 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,694304.75 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8257.0 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1003.5 +,21023,8.11,ADHD-Combined,Male,116,114,115,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,146316.66 +,21023,8.11,ADHD-Combined,Male,116,114,115,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,655685.8 +,21023,8.11,ADHD-Combined,Male,116,114,115,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21023,8.11,ADHD-Combined,Male,116,114,115,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,441183.03 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,749.1 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2052.8 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21024,8.5,Typically Developing Children,Female,136,133,131,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1116427E7 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1128608.0 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1119116.0 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1118683.2 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18389.3 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,739.1 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,445.6 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,541.2 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,435.4 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,605.0 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,900.1 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1331197.0 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,183559.25 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,278415.47 +,21024,8.5,Typically Developing Children,Female,136,133,131,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,219.4503 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,615.5 +,21024,8.5,Typically Developing Children,Female,136,133,131,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,671.65094 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1310.8 +,21024,8.5,Typically Developing Children,Female,136,133,131,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2735.8137 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3423.2 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58062.7 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13462.7 +,21024,8.5,Typically Developing Children,Female,136,133,131,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3745.2852 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3728.1 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,267.0 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2736.4 +,21024,8.5,Typically Developing Children,Female,136,133,131,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1142.4716 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2025.3 +,21024,8.5,Typically Developing Children,Female,136,133,131,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,3287.7646 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5671.8 +,21024,8.5,Typically Developing Children,Female,136,133,131,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6507.6987 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6633.9 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3600.8 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,334.1 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,70.5 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1461090.0 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,166.6 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,183746.53 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,275287.03 +,21024,8.5,Typically Developing Children,Female,136,133,131,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,421.6106 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,643.2 +,21024,8.5,Typically Developing Children,Female,136,133,131,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,456.1906 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1554.5 +,21024,8.5,Typically Developing Children,Female,136,133,131,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3416.7747 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3586.3 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57246.9 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12798.3 +,21024,8.5,Typically Developing Children,Female,136,133,131,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3773.215 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3927.0 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,274.3 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2191.7 +,21024,8.5,Typically Developing Children,Female,136,133,131,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1324.6819 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1716.4 +,21024,8.5,Typically Developing Children,Female,136,133,131,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5680.438 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6052.3 +,21024,8.5,Typically Developing Children,Female,136,133,131,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7054.3296 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6495.2 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3637.6 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,400.0 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,24.7 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56469.0 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,980228.25 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,985999.25 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,977842.0 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,367305.78 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,553702.5 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,725931.5 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,5771.0 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1380.1 +,21024,8.5,Typically Developing Children,Female,136,133,131,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,132134.36 +,21024,8.5,Typically Developing Children,Female,136,133,131,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,713999.5 +,21024,8.5,Typically Developing Children,Female,136,133,131,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21024,8.5,Typically Developing Children,Female,136,133,131,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,443655.38 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1065.9 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1714.3 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1111895E7 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1209367.0 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1184534.0 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1184912.5 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17974.1 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1175.5 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,506.3 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,474.7 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,424.7 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,872.4 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1016.6 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1419854.6 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,201654.48 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,281118.22 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,457.52063 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,529.5 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1030.7515 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1502.7 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3672.135 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3853.1 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,68377.4 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14847.3 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2210.4631 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3173.2 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,333.9 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,10829.7 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1779.5425 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1769.0 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5341.287 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5842.5 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7684.7505 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6919.0 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3859.6 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,364.6 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,8.9 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1548397.0 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,148.6 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,199320.62 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,281301.25 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,283.2904 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,538.3 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,484.12067 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1610.0 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4189.506 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3893.2 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,67082.7 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14920.7 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2662.6636 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3532.6 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,279.7 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,9237.7 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1876.6326 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1801.4 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5788.168 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5781.2 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7507.8604 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6875.5 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3658.9 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,647.2 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,9.7 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57132.0 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1022967.56 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1044207.56 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1020000.0 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,400975.1 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,562419.44 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,755045.44 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,21240.0 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1022.4 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,142351.42 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,712805.2 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21025,8.92,ADHD-Inattentive,Male,81,79,87,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,471336.7 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1107.6 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1956.9 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21026,7.49,ADHD-Combined,Male,116,127,105,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1109246E7 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1110759.0 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1098442.0 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1098598.1 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16579.5 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,722.6 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,495.4 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,645.3 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,460.7 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,752.2 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,899.9 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1344000.5 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,181624.64 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,267264.66 +,21026,7.49,ADHD-Combined,Male,116,127,105,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,425.6006 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,670.3 +,21026,7.49,ADHD-Combined,Male,116,127,105,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,973.56134 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1261.1 +,21026,7.49,ADHD-Combined,Male,116,127,105,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4625.7466 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4357.7 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56854.8 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12906.1 +,21026,7.49,ADHD-Combined,Male,116,127,105,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3073.6343 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3392.1 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,360.1 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3395.3 +,21026,7.49,ADHD-Combined,Male,116,127,105,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1782.2024 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1848.2 +,21026,7.49,ADHD-Combined,Male,116,127,105,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5655.168 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5710.3 +,21026,7.49,ADHD-Combined,Male,116,127,105,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8053.161 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7948.8 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4088.7 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,456.9 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,5.3 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1440192.0 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,129.4 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,181342.38 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,268020.5 +,21026,7.49,ADHD-Combined,Male,116,127,105,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,562.59076 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,582.7 +,21026,7.49,ADHD-Combined,Male,116,127,105,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,752.781 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1365.0 +,21026,7.49,ADHD-Combined,Male,116,127,105,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4455.5063 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4472.5 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57561.9 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12476.5 +,21026,7.49,ADHD-Combined,Male,116,127,105,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3367.5647 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3497.5 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,466.2 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3860.5 +,21026,7.49,ADHD-Combined,Male,116,127,105,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1827.4225 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1858.1 +,21026,7.49,ADHD-Combined,Male,116,127,105,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5402.4673 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5655.6 +,21026,7.49,ADHD-Combined,Male,116,127,105,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6660.6494 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7856.2 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3869.4 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,355.4 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,13.3 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60222.0 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,961351.1 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,969820.1 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,958187.0 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,362967.0 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,535285.1 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,711212.1 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8469.0 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,889.7 +,21026,7.49,ADHD-Combined,Male,116,127,105,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,143650.84 +,21026,7.49,ADHD-Combined,Male,116,127,105,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,661560.2 +,21026,7.49,ADHD-Combined,Male,116,127,105,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,3.1 +,21026,7.49,ADHD-Combined,Male,116,127,105,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,423098.84 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,811.3 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1986.7 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1118999E7 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1100167.0 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1089529.0 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1088897.2 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15062.9 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,821.6 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,662.7 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,610.3 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,442.9 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,829.8 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,738.7 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1273732.8 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,202342.98 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,268280.56 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,409.64056 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,631.9 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1314.0417 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1487.5 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,1920.5227 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2876.1 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,36013.0 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,9010.4 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3093.5842 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3838.3 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,218.0 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3518.7 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1235.5717 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1854.4 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4464.816 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4945.9 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7150.09 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7348.7 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3624.7 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,323.2 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,27.5 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1504066.0 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,138.8 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,203541.02 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,270025.62 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,259.35034 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,611.8 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,770.07104 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1634.3 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2669.3137 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3177.9 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,36188.0 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,8494.9 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2969.894 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3812.3 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,218.9 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3270.8 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1179.7117 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1603.8 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4325.166 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4693.0 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6103.3784 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6937.1 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3701.1 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,341.5 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,23.0 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,54733.0 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1001458.2 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1008756.2 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,999437.0 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,405884.0 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,538306.2 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,666167.2 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7298.0 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1508.1 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,174322.02 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,632173.8 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21027,10.43,ADHD-Inattentive,Female,120,118,119,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,445470.8 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,776.4 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1513.1 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21028,8.52,Typically Developing Children,Female,129,120,132,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1111158E7 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1147253.0 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1135098.0 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1135347.6 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15972.2 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,781.4 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,422.5 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,493.9 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,419.4 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,815.5 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1046.4 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1417075.0 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,197107.48 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,276988.7 +,21028,8.52,Typically Developing Children,Female,129,120,132,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,630.4209 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,636.6 +,21028,8.52,Typically Developing Children,Female,129,120,132,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,433.5806 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1388.4 +,21028,8.52,Typically Developing Children,Female,129,120,132,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3996.6555 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3887.5 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52220.0 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10938.2 +,21028,8.52,Typically Developing Children,Female,129,120,132,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3734.645 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3539.0 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,247.0 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4724.3 +,21028,8.52,Typically Developing Children,Female,129,120,132,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1808.8025 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1840.6 +,21028,8.52,Typically Developing Children,Female,129,120,132,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5647.188 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5543.9 +,21028,8.52,Typically Developing Children,Female,129,120,132,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6967.8794 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6817.8 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3414.0 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,529.6 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,15.3 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1509662.0 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,118.4 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,200116.47 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,280926.0 +,21028,8.52,Typically Developing Children,Female,129,120,132,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,496.0907 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,636.2 +,21028,8.52,Typically Developing Children,Female,129,120,132,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,553.28076 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1508.1 +,21028,8.52,Typically Developing Children,Female,129,120,132,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4214.776 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4180.5 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,50953.2 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10314.7 +,21028,8.52,Typically Developing Children,Female,129,120,132,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3109.5442 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3649.6 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,242.3 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3251.6 +,21028,8.52,Typically Developing Children,Female,129,120,132,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1794.1725 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1730.9 +,21028,8.52,Typically Developing Children,Female,129,120,132,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5334.637 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5423.5 +,21028,8.52,Typically Developing Children,Female,129,120,132,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6983.84 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6750.3 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3273.9 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,461.3 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.4 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56021.0 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1013976.6 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1022949.6 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1010806.0 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,397223.94 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,557914.7 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,717606.7 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8973.0 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,736.3 +,21028,8.52,Typically Developing Children,Female,129,120,132,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,150650.64 +,21028,8.52,Typically Developing Children,Female,129,120,132,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,687882.25 +,21028,8.52,Typically Developing Children,Female,129,120,132,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21028,8.52,Typically Developing Children,Female,129,120,132,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,453208.75 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,833.8 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1549.9 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21029,10.73,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1111438E7 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1217819.0 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1206801.0 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1206456.4 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16985.4 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,873.7 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,541.7 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,553.3 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,387.1 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,898.2 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,848.4 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1344249.4 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,217448.14 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,302072.2 +,21029,10.73,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,599.8308 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,729.9 +,21029,10.73,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,525.3507 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1409.0 +,21029,10.73,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4153.5957 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4135.2 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,47075.8 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,9968.6 +,21029,10.73,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3440.7148 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3862.8 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,370.4 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3647.5 +,21029,10.73,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1699.7423 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1936.5 +,21029,10.73,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5707.038 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5795.4 +,21029,10.73,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6793.6494 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7332.9 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3980.1 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,514.3 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,26.1 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1618790.0 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,137.4 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,217876.77 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,302710.25 +,21029,10.73,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,498.75067 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,591.6 +,21029,10.73,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,549.2908 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1563.4 +,21029,10.73,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4510.036 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4075.5 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,41468.1 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,8504.6 +,21029,10.73,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3384.8547 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3717.2 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,308.1 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3052.3 +,21029,10.73,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1376.5519 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1818.0 +,21029,10.73,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5222.917 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5628.6 +,21029,10.73,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6963.8896 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7043.1 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3797.3 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,569.2 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,11.4 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59357.0 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1101745.4 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1109725.4 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1099683.0 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,435324.9 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,604782.44 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,753304.44 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7980.0 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2170.7 +,21029,10.73,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,157844.62 +,21029,10.73,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,703887.5 +,21029,10.73,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21029,10.73,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,461712.78 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1326.2 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1724.3 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1108911E7 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1285493.0 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1265919.0 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1265777.2 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19401.3 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1025.9 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,529.4 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,700.2 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,571.9 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,862.3 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1008.7 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1529824.8 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,218763.38 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,308417.1 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,347.1305 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,743.2 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,982.87134 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1552.8 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3658.835 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3642.4 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62753.4 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15594.7 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3584.355 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3856.4 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,335.5 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5424.2 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1897.9126 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1755.8 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5286.7573 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5320.2 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8611.762 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7629.4 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4163.0 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,324.1 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1672934.0 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,232.2 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,217256.03 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,308512.78 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,341.8105 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,531.6 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1033.4114 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1726.1 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3720.0151 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4003.3 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61445.9 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13829.5 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3547.115 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4498.1 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,504.2 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8835.1 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1901.9026 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1624.5 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5246.8574 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5425.4 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7792.481 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7217.5 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4453.1 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,570.8 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,3.2 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60116.0 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1115168.2 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1130776.2 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1113012.0 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,436019.4 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,616929.9 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,801191.9 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15608.0 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,706.6 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,179925.31 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,733708.8 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21030,10.74,ADHD-Combined,Male,N/A,100,110,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,508155.12 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,756.1 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2036.9 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21031,7.35,ADHD-Combined,Female,107,97,115,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1114513E7 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,987976.0 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,977886.0 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,977701.3 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,14870.7 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,905.9 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,530.3 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,524.5 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,313.9 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,656.1 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1038.8 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1155402.1 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,159504.66 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,243144.72 +,21031,7.35,ADHD-Combined,Female,107,97,115,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,518.7007 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,667.2 +,21031,7.35,ADHD-Combined,Female,107,97,115,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,682.29095 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1241.9 +,21031,7.35,ADHD-Combined,Female,107,97,115,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3807.7952 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3684.9 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,51736.8 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,9541.7 +,21031,7.35,ADHD-Combined,Female,107,97,115,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2908.714 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3425.3 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,188.2 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2864.2 +,21031,7.35,ADHD-Combined,Female,107,97,115,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1432.412 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1457.7 +,21031,7.35,ADHD-Combined,Female,107,97,115,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4545.9463 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4881.9 +,21031,7.35,ADHD-Combined,Female,107,97,115,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6793.6494 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6068.1 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3195.2 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,301.0 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,3.7 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1274171.0 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,122.3 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,160864.95 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,242405.98 +,21031,7.35,ADHD-Combined,Female,107,97,115,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,446.8806 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,563.0 +,21031,7.35,ADHD-Combined,Female,107,97,115,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,619.7809 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1335.2 +,21031,7.35,ADHD-Combined,Female,107,97,115,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3871.6353 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4058.1 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,51109.6 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,9102.0 +,21031,7.35,ADHD-Combined,Female,107,97,115,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3479.2847 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3506.7 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,212.2 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2389.8 +,21031,7.35,ADHD-Combined,Female,107,97,115,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1589.3522 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1510.5 +,21031,7.35,ADHD-Combined,Female,107,97,115,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4811.947 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4943.3 +,21031,7.35,ADHD-Combined,Female,107,97,115,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6842.8594 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6093.3 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3083.0 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,337.0 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.9 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,51126.0 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,858988.3 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,865147.3 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,857121.0 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,320369.6 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,485550.7 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,639300.7 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6159.0 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,429.9 +,21031,7.35,ADHD-Combined,Female,107,97,115,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,126163.98 +,21031,7.35,ADHD-Combined,Female,107,97,115,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,636667.9 +,21031,7.35,ADHD-Combined,Female,107,97,115,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21031,7.35,ADHD-Combined,Female,107,97,115,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,383003.28 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,709.4 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1436.2 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21032,8.84,ADHD-Combined,Female,120,101,138,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1111479E7 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1041116.0 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1030185.0 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1030450.6 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15824.7 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,738.3 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,509.9 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,561.2 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,322.3 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,613.8 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,778.5 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1226632.1 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,167850.08 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,252561.48 +,21032,8.84,ADHD-Combined,Female,120,101,138,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,594.5108 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,610.0 +,21032,8.84,ADHD-Combined,Female,120,101,138,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,853.8612 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1248.5 +,21032,8.84,ADHD-Combined,Female,120,101,138,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3916.8555 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3563.8 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52717.5 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11489.9 +,21032,8.84,ADHD-Combined,Female,120,101,138,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3188.0144 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3276.9 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,445.2 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3687.7 +,21032,8.84,ADHD-Combined,Female,120,101,138,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1594.6722 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1762.3 +,21032,8.84,ADHD-Combined,Female,120,101,138,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5298.7275 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5176.6 +,21032,8.84,ADHD-Combined,Female,120,101,138,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7517.1704 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6963.0 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3048.4 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,324.1 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,24.4 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1329999.0 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,94.2 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,171633.22 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,257008.84 +,21032,8.84,ADHD-Combined,Female,120,101,138,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,468.16064 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,459.4 +,21032,8.84,ADHD-Combined,Female,120,101,138,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,827.2611 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1317.1 +,21032,8.84,ADHD-Combined,Female,120,101,138,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3797.1553 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3812.4 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53715.7 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11045.5 +,21032,8.84,ADHD-Combined,Female,120,101,138,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3491.255 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3400.6 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,468.5 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3124.5 +,21032,8.84,ADHD-Combined,Female,120,101,138,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1752.9424 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1705.8 +,21032,8.84,ADHD-Combined,Female,120,101,138,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5117.847 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5021.0 +,21032,8.84,ADHD-Combined,Female,120,101,138,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6966.55 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6614.4 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3201.8 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,430.3 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,20.3 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,52818.0 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,904744.6 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,912841.6 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,901537.0 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,339483.3 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,509570.3 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,668894.3 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8097.0 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1168.0 +,21032,8.84,ADHD-Combined,Female,120,101,138,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,136978.22 +,21032,8.84,ADHD-Combined,Female,120,101,138,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,615117.9 +,21032,8.84,ADHD-Combined,Female,120,101,138,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21032,8.84,ADHD-Combined,Female,120,101,138,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,390930.1 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,852.6 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1304.1 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21033,8.08,ADHD-Combined,Female,109,105,111,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1115855E7 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1088009.0 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1073310.0 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1072778.8 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16810.1 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,778.5 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,508.2 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,441.5 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,421.8 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,767.1 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,911.3 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1195265.4 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,175701.31 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,270942.2 +,21033,8.08,ADHD-Combined,Female,109,105,111,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,497.4207 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,549.2 +,21033,8.08,ADHD-Combined,Female,109,105,111,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,804.6511 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1032.7 +,21033,8.08,ADHD-Combined,Female,109,105,111,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3074.9644 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3004.9 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,51111.1 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13473.3 +,21033,8.08,ADHD-Combined,Female,109,105,111,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3044.3743 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3138.7 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,212.7 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5375.4 +,21033,8.08,ADHD-Combined,Female,109,105,111,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1238.2317 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1397.7 +,21033,8.08,ADHD-Combined,Female,109,105,111,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4244.0356 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4510.6 +,21033,8.08,ADHD-Combined,Female,109,105,111,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7545.1006 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6555.9 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3439.5 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,480.3 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,8.7 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1416087.0 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,120.1 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,176755.47 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,273515.75 +,21033,8.08,ADHD-Combined,Female,109,105,111,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,436.2406 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,542.6 +,21033,8.08,ADHD-Combined,Female,109,105,111,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,786.03107 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1107.1 +,21033,8.08,ADHD-Combined,Female,109,105,111,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3199.9844 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3167.6 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,49795.2 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12628.7 +,21033,8.08,ADHD-Combined,Female,109,105,111,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3168.0645 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3365.5 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,85.0 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5344.4 +,21033,8.08,ADHD-Combined,Female,109,105,111,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1456.352 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1365.4 +,21033,8.08,ADHD-Combined,Female,109,105,111,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4310.536 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4329.3 +,21033,8.08,ADHD-Combined,Female,109,105,111,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7203.29 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6497.2 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3289.5 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,610.7 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,2.5 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,49034.0 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,948679.7 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,960457.7 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,946367.0 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,352456.78 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,544457.94 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,694599.94 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11778.0 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,896.3 +,21033,8.08,ADHD-Combined,Female,109,105,111,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,141989.67 +,21033,8.08,ADHD-Combined,Female,109,105,111,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,650571.75 +,21033,8.08,ADHD-Combined,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21033,8.08,ADHD-Combined,Female,109,105,111,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,403861.72 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,723.6 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2176.2 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21034,13.18,Typically Developing Children,Male,101,106,95,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1101101E7 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1365584.0 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1348404.0 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1349030.0 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,25020.1 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1258.7 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,626.7 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,620.6 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,603.5 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,953.5 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,858.3 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1659363.8 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,256847.28 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,302860.66 +,21034,13.18,Typically Developing Children,Male,101,106,95,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,881.7912 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,776.5 +,21034,13.18,Typically Developing Children,Male,101,106,95,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1149.1216 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1666.3 +,21034,13.18,Typically Developing Children,Male,101,106,95,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4910.3667 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4819.3 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62212.3 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,17354.6 +,21034,13.18,Typically Developing Children,Male,101,106,95,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4200.146 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4026.5 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,415.6 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8164.1 +,21034,13.18,Typically Developing Children,Male,101,106,95,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2161.253 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2417.0 +,21034,13.18,Typically Developing Children,Male,101,106,95,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5774.868 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6179.0 +,21034,13.18,Typically Developing Children,Male,101,106,95,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8791.3125 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9508.7 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4911.9 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,466.5 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.8 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1767559.0 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,132.7 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,258747.3 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,302722.75 +,21034,13.18,Typically Developing Children,Male,101,106,95,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,476.14066 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,763.1 +,21034,13.18,Typically Developing Children,Male,101,106,95,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,762.09106 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1738.9 +,21034,13.18,Typically Developing Children,Male,101,106,95,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5160.407 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4967.0 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62480.1 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,16714.0 +,21034,13.18,Typically Developing Children,Male,101,106,95,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4123.006 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4167.2 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,346.9 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4337.4 +,21034,13.18,Typically Developing Children,Male,101,106,95,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2217.113 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2349.4 +,21034,13.18,Typically Developing Children,Male,101,106,95,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6100.7183 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6032.0 +,21034,13.18,Typically Developing Children,Male,101,106,95,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9054.652 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8782.9 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,5193.5 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,486.9 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,9.8 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,70242.0 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1193704.0 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1207401.0 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1190689.0 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,515594.56 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,605583.44 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,800579.44 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13697.0 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,747.8 +,21034,13.18,Typically Developing Children,Male,101,106,95,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,172033.08 +,21034,13.18,Typically Developing Children,Male,101,106,95,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,721200.1 +,21034,13.18,Typically Developing Children,Male,101,106,95,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21034,13.18,Typically Developing Children,Male,101,106,95,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,593375.0 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1483.6 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,4382.0 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21035,13.65,ADHD-Combined,Male,112,103,118,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1106359E7 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1296992.0 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1267158.0 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1267238.8 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20180.4 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1009.3 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,439.9 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,577.6 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,413.6 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,807.4 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1523.8 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1639506.9 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,233966.73 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,288410.84 +,21035,13.65,ADHD-Combined,Male,112,103,118,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,474.80792 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,605.5 +,21035,13.65,ADHD-Combined,Male,112,103,118,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1226.2546 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1556.5 +,21035,13.65,ADHD-Combined,Male,112,103,118,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4394.301 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4523.2 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,68258.7 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,17571.0 +,21035,13.65,ADHD-Combined,Male,112,103,118,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3875.603 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3790.6 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,381.6 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,10512.2 +,21035,13.65,ADHD-Combined,Male,112,103,118,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1928.4916 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1987.9 +,21035,13.65,ADHD-Combined,Male,112,103,118,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5472.9263 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5609.7 +,21035,13.65,ADHD-Combined,Male,112,103,118,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8476.053 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7495.5 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4341.0 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,611.7 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,4.1 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1742593.0 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,138.7 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,231310.69 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,283483.53 +,21035,13.65,ADHD-Combined,Male,112,103,118,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,420.27817 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,685.3 +,21035,13.65,ADHD-Combined,Male,112,103,118,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,877.79614 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1651.5 +,21035,13.65,ADHD-Combined,Male,112,103,118,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4419.571 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4736.0 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64277.0 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,16465.8 +,21035,13.65,ADHD-Combined,Male,112,103,118,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3605.6143 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3739.2 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,437.9 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,10664.2 +,21035,13.65,ADHD-Combined,Male,112,103,118,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2030.9011 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1959.3 +,21035,13.65,ADHD-Combined,Male,112,103,118,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5511.496 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5567.9 +,21035,13.65,ADHD-Combined,Male,112,103,118,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7727.266 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7847.5 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4046.6 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,565.6 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.3 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62183.0 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1103359.8 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1126113.8 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1099152.0 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,465277.4 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,571894.4 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,768665.4 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,22754.0 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,6594.9 +,21035,13.65,ADHD-Combined,Male,112,103,118,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,200075.02 +,21035,13.65,ADHD-Combined,Male,112,103,118,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,726718.1 +,21035,13.65,ADHD-Combined,Male,112,103,118,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21035,13.65,ADHD-Combined,Male,112,103,118,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,519912.03 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,655.3 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1120.5 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21036,12.55,ADHD-Combined,Male,77,78,80,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1133487E7 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1169635.0 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1160766.0 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1160597.0 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18218.8 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1135.6 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,669.4 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,552.2 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,603.1 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,942.8 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,736.4 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1370678.8 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,219157.67 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,269176.5 +,21036,12.55,ADHD-Combined,Male,77,78,80,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,332.50046 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,535.3 +,21036,12.55,ADHD-Combined,Male,77,78,80,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,549.2908 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1540.5 +,21036,12.55,ADHD-Combined,Male,77,78,80,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2754.4338 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3555.9 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52082.0 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11095.5 +,21036,12.55,ADHD-Combined,Male,77,78,80,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,730.171 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3497.0 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,254.9 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3331.3 +,21036,12.55,ADHD-Combined,Male,77,78,80,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,853.8612 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1765.9 +,21036,12.55,ADHD-Combined,Male,77,78,80,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,1730.3324 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5065.5 +,21036,12.55,ADHD-Combined,Male,77,78,80,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,3971.3855 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7565.2 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3658.3 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,250.2 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,16.6 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1571417.0 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,162.1 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,217996.12 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,271450.78 +,21036,12.55,ADHD-Combined,Male,77,78,80,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,230.09032 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,560.1 +,21036,12.55,ADHD-Combined,Male,77,78,80,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,317.87042 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1667.6 +,21036,12.55,ADHD-Combined,Male,77,78,80,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3390.1746 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3597.7 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,52220.6 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11650.4 +,21036,12.55,ADHD-Combined,Male,77,78,80,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,730.171 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3265.3 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,201.3 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2597.4 +,21036,12.55,ADHD-Combined,Male,77,78,80,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,855.19116 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1706.7 +,21036,12.55,ADHD-Combined,Male,77,78,80,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,2679.9536 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4932.1 +,21036,12.55,ADHD-Combined,Male,77,78,80,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,4252.0156 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7104.3 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3686.9 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,338.4 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,9.8 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55623.0 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1036287.06 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1042885.06 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1033429.0 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,437153.78 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,540627.25 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,701161.25 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6598.0 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1351.3 +,21036,12.55,ADHD-Combined,Male,77,78,80,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,174093.25 +,21036,12.55,ADHD-Combined,Male,77,78,80,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,655232.06 +,21036,12.55,ADHD-Combined,Male,77,78,80,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21036,12.55,ADHD-Combined,Male,77,78,80,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,467048.75 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,757.0 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1665.2 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1131835E7 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1220736.0 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1207459.0 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1207384.0 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17719.2 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1066.0 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,617.7 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,631.3 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,526.4 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,998.4 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1032.5 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1376979.4 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,234302.56 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,275446.5 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,200.83028 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,903.5 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,707.561 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1223.7 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2154.603 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4428.6 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,46449.7 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11818.3 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,980.21136 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3962.6 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,320.0 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4127.2 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,931.0013 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2285.4 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,1901.9026 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5553.6 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,4609.786 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8651.9 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3914.7 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,656.8 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,29.8 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1651928.0 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,197.9 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,236874.58 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,280449.4 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,43.89006 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,709.8 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,796.6711 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1718.7 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4503.386 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4837.2 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,44794.9 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11320.6 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,1369.9019 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4141.1 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,411.2 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4452.4 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,847.2112 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2030.3 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,1431.082 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5860.6 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,4551.266 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7823.7 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4216.9 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,600.1 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,42.3 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64266.0 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1094991.0 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1105053.0 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1091307.0 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,471177.12 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,555895.94 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,713507.94 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10062.0 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,995.9 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,202482.14 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,619248.9 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21037,13.63,ADHD-Inattentive,Male,119,114,119,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,473491.28 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,825.1 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1768.7 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21038,7.26,Typically Developing Children,Male,119,108,127,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1112556E7 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1126877.0 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1110559.0 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1110526.0 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16010.5 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1086.9 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,557.2 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,453.5 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,556.4 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,902.1 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,937.7 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1350256.6 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,190230.3 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,268544.94 +,21038,7.26,Typically Developing Children,Male,119,108,127,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,541.3107 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,698.2 +,21038,7.26,Typically Developing Children,Male,119,108,127,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,646.38086 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1289.0 +,21038,7.26,Typically Developing Children,Male,119,108,127,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3340.9646 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3439.2 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60278.6 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11574.5 +,21038,7.26,Typically Developing Children,Male,119,108,127,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3310.3745 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3468.3 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,331.1 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6993.6 +,21038,7.26,Typically Developing Children,Male,119,108,127,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1605.3123 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1567.0 +,21038,7.26,Typically Developing Children,Male,119,108,127,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5288.0874 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5186.1 +,21038,7.26,Typically Developing Children,Male,119,108,127,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7187.33 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6828.5 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3459.3 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,353.2 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,4.7 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1466021.0 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,115.5 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,188135.36 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,265736.34 +,21038,7.26,Typically Developing Children,Male,119,108,127,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,277.9704 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,564.4 +,21038,7.26,Typically Developing Children,Male,119,108,127,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,699.58093 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1697.7 +,21038,7.26,Typically Developing Children,Male,119,108,127,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3798.4854 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3685.5 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61156.6 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10995.4 +,21038,7.26,Typically Developing Children,Male,119,108,127,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3041.714 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3585.5 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,306.9 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4938.9 +,21038,7.26,Typically Developing Children,Male,119,108,127,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1683.7823 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1370.4 +,21038,7.26,Typically Developing Children,Male,119,108,127,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5209.617 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5290.5 +,21038,7.26,Typically Developing Children,Male,119,108,127,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7676.7705 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7031.8 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3458.3 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,431.1 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,10.0 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,54508.0 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,969800.94 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,982775.94 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,967095.0 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,378365.66 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,534281.3 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,710427.3 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12975.0 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,707.5 +,21038,7.26,Typically Developing Children,Male,119,108,127,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,142500.39 +,21038,7.26,Typically Developing Children,Male,119,108,127,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,673068.7 +,21038,7.26,Typically Developing Children,Male,119,108,127,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21038,7.26,Typically Developing Children,Male,119,108,127,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,431825.0 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,659.3 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1202.8 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21039,7.56,ADHD-Combined,Male,88,79,101,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1108725E7 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1305006.0 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1294541.0 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1293683.9 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19155.1 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1086.1 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,574.3 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,735.7 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,519.7 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,925.5 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,838.9 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1503134.5 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,219053.69 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,322958.56 +,21039,7.56,ADHD-Combined,Male,88,79,101,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,562.5875 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,706.7 +,21039,7.56,ADHD-Combined,Male,88,79,101,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,277.96878 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1568.9 +,21039,7.56,ADHD-Combined,Male,88,79,101,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3379.5154 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4428.8 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59731.1 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15219.5 +,21039,7.56,ADHD-Combined,Male,88,79,101,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3863.633 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4135.2 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,361.8 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3551.7 +,21039,7.56,ADHD-Combined,Male,88,79,101,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2017.6012 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2122.3 +,21039,7.56,ADHD-Combined,Male,88,79,101,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5472.9263 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5971.1 +,21039,7.56,ADHD-Combined,Male,88,79,101,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8529.253 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8759.3 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4166.1 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,413.3 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,13.5 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1675602.0 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,177.0 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,218207.53 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,316421.03 +,21039,7.56,ADHD-Combined,Male,88,79,101,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,336.48853 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,776.1 +,21039,7.56,ADHD-Combined,Male,88,79,101,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,756.7667 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1897.3 +,21039,7.56,ADHD-Combined,Male,88,79,101,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3586.9944 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4803.5 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60810.8 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,16052.9 +,21039,7.56,ADHD-Combined,Male,88,79,101,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3632.214 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3962.4 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,197.5 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3378.3 +,21039,7.56,ADHD-Combined,Male,88,79,101,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1904.5518 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1992.0 +,21039,7.56,ADHD-Combined,Male,88,79,101,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5452.976 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5743.1 +,21039,7.56,ADHD-Combined,Male,88,79,101,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8301.824 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8352.1 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4346.7 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,441.1 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.0 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65443.0 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1145693.9 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1153586.9 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1142768.0 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,437261.22 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,639379.6 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,825897.6 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7893.0 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2005.7 +,21039,7.56,ADHD-Combined,Male,88,79,101,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,137707.6 +,21039,7.56,ADHD-Combined,Male,88,79,101,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,787740.94 +,21039,7.56,ADHD-Combined,Male,88,79,101,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21039,7.56,ADHD-Combined,Male,88,79,101,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,508875.72 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1391.3 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1947.0 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21040,7.62,ADHD-Combined,Male,100,102,99,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1108139E7 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1339912.0 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1314246.0 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1313898.4 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19580.1 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,919.2 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,520.9 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,761.7 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,532.4 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,900.0 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,933.6 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1615298.4 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,241749.61 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,303124.25 +,21040,7.62,ADHD-Combined,Male,100,102,99,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,662.34094 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,678.3 +,21040,7.62,ADHD-Combined,Male,100,102,99,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,841.8912 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1532.4 +,21040,7.62,ADHD-Combined,Male,100,102,99,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3882.2754 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3930.8 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61183.9 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14234.2 +,21040,7.62,ADHD-Combined,Male,100,102,99,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2980.5342 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3498.8 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,662.3 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,9472.8 +,21040,7.62,ADHD-Combined,Male,100,102,99,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2057.513 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2021.7 +,21040,7.62,ADHD-Combined,Male,100,102,99,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5882.598 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5816.5 +,21040,7.62,ADHD-Combined,Male,100,102,99,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8649.002 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8077.3 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4686.5 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,463.1 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,8.5 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1715467.0 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,211.7 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,244602.5 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,305800.97 +,21040,7.62,ADHD-Combined,Male,100,102,99,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,440.2306 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,635.7 +,21040,7.62,ADHD-Combined,Male,100,102,99,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,867.1612 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1772.2 +,21040,7.62,ADHD-Combined,Male,100,102,99,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4140.296 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4183.4 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63378.8 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,16285.5 +,21040,7.62,ADHD-Combined,Male,100,102,99,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2469.8135 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3810.8 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,472.9 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,10534.6 +,21040,7.62,ADHD-Combined,Male,100,102,99,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2163.913 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1989.9 +,21040,7.62,ADHD-Combined,Male,100,102,99,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5629.898 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5780.6 +,21040,7.62,ADHD-Combined,Male,100,102,99,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8057.151 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8313.6 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4646.7 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,411.5 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63550.0 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1161906.4 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1183558.4 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1159045.0 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,486352.12 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,608925.2 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,797702.2 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,21652.0 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1905.9 +,21040,7.62,ADHD-Combined,Male,100,102,99,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,166812.81 +,21040,7.62,ADHD-Combined,Male,100,102,99,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,761500.5 +,21040,7.62,ADHD-Combined,Male,100,102,99,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21040,7.62,ADHD-Combined,Male,100,102,99,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,535933.56 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1249.7 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2247.6 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2104012,9.62,Typically Developing Children,Male,115,123,116,http://purl.org/nidash/fsl#,Background (mm^3),,,1.305761E7 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1174522.0 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1157085.0 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1157659.1 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20219.3 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,741.3 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,478.1 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,408.1 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,528.0 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,925.9 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,916.1 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1415004.0 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,198024.9 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,280341.28 +,2104012,9.62,Typically Developing Children,Male,115,123,116,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,427.0001 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,778.9 +,2104012,9.62,Typically Developing Children,Male,115,123,116,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1416.0004 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1523.1 +,2104012,9.62,Typically Developing Children,Male,115,123,116,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4017.001 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3865.0 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58294.6 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12615.3 +,2104012,9.62,Typically Developing Children,Male,115,123,116,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3512.0007 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3657.8 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,610.5 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6288.5 +,2104012,9.62,Typically Developing Children,Male,115,123,116,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1849.0005 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1739.4 +,2104012,9.62,Typically Developing Children,Male,115,123,116,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5403.0015 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5583.7 +,2104012,9.62,Typically Developing Children,Male,115,123,116,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8343.002 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7044.0 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4231.5 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,501.4 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,16.1 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1525984.0 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,165.6 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,198288.39 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,284129.6 +,2104012,9.62,Typically Developing Children,Male,115,123,116,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,344.0001 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,790.8 +,2104012,9.62,Typically Developing Children,Male,115,123,116,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1177.0002 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1665.0 +,2104012,9.62,Typically Developing Children,Male,115,123,116,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4119.001 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4054.3 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55060.3 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12388.9 +,2104012,9.62,Typically Developing Children,Male,115,123,116,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3585.001 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3668.3 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,586.6 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4975.9 +,2104012,9.62,Typically Developing Children,Male,115,123,116,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1875.0005 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1740.0 +,2104012,9.62,Typically Developing Children,Male,115,123,116,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5351.0015 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5520.6 +,2104012,9.62,Typically Developing Children,Male,115,123,116,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8175.002 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6712.7 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3952.8 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,593.1 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,9.7 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58461.0 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1020940.2 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1034085.2 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1018547.0 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,396313.28 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,564470.9 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,737263.9 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13145.0 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1036.1 +,2104012,9.62,Typically Developing Children,Male,115,123,116,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,181456.05 +,2104012,9.62,Typically Developing Children,Male,115,123,116,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,702822.1 +,2104012,9.62,Typically Developing Children,Male,115,123,116,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2104012,9.62,Typically Developing Children,Male,115,123,116,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,474897.1 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,712.3 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1565.8 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21041,12.1,Typically Developing Children,Female,123,119,119,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1110489E7 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1185202.0 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1174077.0 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1174227.0 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19036.6 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,916.3 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,609.4 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,596.9 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,420.3 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,791.8 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,917.4 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1429175.8 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,208210.53 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,279018.72 +,21041,12.1,Typically Developing Children,Female,123,119,119,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,582.5408 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,807.9 +,21041,12.1,Typically Developing Children,Female,123,119,119,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,884.45123 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1279.7 +,21041,12.1,Typically Developing Children,Female,123,119,119,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3912.8655 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3757.0 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58453.6 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12716.6 +,21041,12.1,Typically Developing Children,Female,123,119,119,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3299.7346 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3548.4 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,394.3 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3727.8 +,21041,12.1,Typically Developing Children,Female,123,119,119,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1743.6324 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2025.0 +,21041,12.1,Typically Developing Children,Female,123,119,119,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4967.5566 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4769.6 +,21041,12.1,Typically Developing Children,Female,123,119,119,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7921.4907 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8281.7 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3925.6 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,344.0 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,21.7 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1536323.0 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,103.2 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,208816.6 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,277850.2 +,21041,12.1,Typically Developing Children,Female,123,119,119,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,425.6006 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,771.1 +,21041,12.1,Typically Developing Children,Female,123,119,119,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,524.02075 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1845.9 +,21041,12.1,Typically Developing Children,Female,123,119,119,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4067.1455 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4001.4 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58586.9 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12428.6 +,21041,12.1,Typically Developing Children,Female,123,119,119,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3125.5044 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3735.9 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,425.4 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3448.1 +,21041,12.1,Typically Developing Children,Female,123,119,119,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1782.2024 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1682.9 +,21041,12.1,Typically Developing Children,Female,123,119,119,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5117.847 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5157.4 +,21041,12.1,Typically Developing Children,Female,123,119,119,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8019.911 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7393.6 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4212.2 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,437.8 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,21.0 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58981.0 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1035074.0 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1043205.0 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1032657.0 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,417027.12 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,556868.9 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,732931.9 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8131.0 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,795.8 +,21041,12.1,Typically Developing Children,Female,123,119,119,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,152861.1 +,21041,12.1,Typically Developing Children,Female,123,119,119,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,706957.1 +,21041,12.1,Typically Developing Children,Female,123,119,119,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21041,12.1,Typically Developing Children,Female,123,119,119,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,481177.38 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,708.7 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1118.5 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21042,9.42,ADHD-Combined,Male,81,72,94,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1113455E7 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1046980.0 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1036975.0 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1036431.3 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15432.7 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,910.0 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,500.5 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,613.1 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,322.0 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,684.1 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,692.4 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1269049.4 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,182833.73 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,255447.0 +,21042,9.42,ADHD-Combined,Male,81,72,94,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,525.3507 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,571.5 +,21042,9.42,ADHD-Combined,Male,81,72,94,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,873.8112 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1370.8 +,21042,9.42,ADHD-Combined,Male,81,72,94,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3648.195 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3415.5 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,44847.1 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11038.8 +,21042,9.42,ADHD-Combined,Male,81,72,94,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3266.4844 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3450.1 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,312.4 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3267.2 +,21042,9.42,ADHD-Combined,Male,81,72,94,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1625.2622 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1888.5 +,21042,9.42,ADHD-Combined,Male,81,72,94,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4573.8765 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4797.9 +,21042,9.42,ADHD-Combined,Male,81,72,94,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7324.3203 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6072.2 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3572.3 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,313.9 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,17.8 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1371372.0 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,122.7 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,178528.0 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,250261.58 +,21042,9.42,ADHD-Combined,Male,81,72,94,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,539.9807 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,534.1 +,21042,9.42,ADHD-Combined,Male,81,72,94,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,831.25116 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1588.9 +,21042,9.42,ADHD-Combined,Male,81,72,94,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3452.6848 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3442.7 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,49217.8 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11588.4 +,21042,9.42,ADHD-Combined,Male,81,72,94,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3473.9648 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3510.1 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,242.7 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3544.9 +,21042,9.42,ADHD-Combined,Male,81,72,94,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1709.0524 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1654.7 +,21042,9.42,ADHD-Combined,Male,81,72,94,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4774.7065 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5011.5 +,21042,9.42,ADHD-Combined,Male,81,72,94,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6789.659 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6099.1 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3399.4 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,402.6 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,23.9 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,52188.0 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,922445.3 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,930066.3 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,919713.0 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,361361.72 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,505708.56 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,652947.56 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7621.0 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,966.0 +,21042,9.42,ADHD-Combined,Male,81,72,94,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,150129.28 +,21042,9.42,ADHD-Combined,Male,81,72,94,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,601517.25 +,21042,9.42,ADHD-Combined,Male,81,72,94,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21042,9.42,ADHD-Combined,Male,81,72,94,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,404567.94 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,913.1 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1151.5 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1008889.0 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,997224.0 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,996922.8 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,13773.3 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,770.1 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,524.4 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,552.5 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,424.7 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,658.0 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,711.0 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,943811.4 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,176808.3 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,265525.56 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,658.5 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1008.2 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3328.0 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,33067.3 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,7316.3 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3066.9 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,471.3 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4476.4 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1606.2 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,3961.3 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6086.8 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3507.6 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,394.8 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,12.4 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1425547.0 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,118.1 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,173296.3 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,256182.62 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,595.7 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1036.8 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3602.1 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,28976.0 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,7019.0 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3284.1 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,404.1 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3546.0 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1306.2 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4264.8 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,5817.5 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3309.7 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,433.8 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,48253.0 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,922163.8 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,931205.8 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,920257.0 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,350104.6 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,521708.2 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,633015.2 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9042.0 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,835.4 +,21043,9.17,ADHD-Combined,Female,83,80,88,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1108.0 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1994.2 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21044,7.74,ADHD-Combined,Male,89,93,89,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1109565E7 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1309529.0 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1288274.0 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1288065.4 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22876.9 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,922.6 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,511.7 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,694.9 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,537.3 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,780.4 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1138.9 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1641830.1 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,222436.45 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,305062.06 +,21044,7.74,ADHD-Combined,Male,89,93,89,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,581.2108 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,807.4 +,21044,7.74,ADHD-Combined,Male,89,93,89,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,726.181 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1378.0 +,21044,7.74,ADHD-Combined,Male,89,93,89,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4502.056 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4438.7 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,68635.2 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16516.4 +,21044,7.74,ADHD-Combined,Male,89,93,89,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3672.135 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4056.3 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,319.5 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7847.8 +,21044,7.74,ADHD-Combined,Male,89,93,89,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1211.6317 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1629.5 +,21044,7.74,ADHD-Combined,Male,89,93,89,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4278.6157 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4903.0 +,21044,7.74,ADHD-Combined,Male,89,93,89,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8136.951 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7746.1 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4256.3 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,396.2 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,15.9 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1759305.0 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,199.2 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,223558.17 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,307596.7 +,21044,7.74,ADHD-Combined,Male,89,93,89,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,408.31055 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,666.0 +,21044,7.74,ADHD-Combined,Male,89,93,89,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,575.8908 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1771.2 +,21044,7.74,ADHD-Combined,Male,89,93,89,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4681.6064 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4748.5 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,68500.4 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14942.2 +,21044,7.74,ADHD-Combined,Male,89,93,89,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4047.1956 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4401.6 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,485.9 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7846.6 +,21044,7.74,ADHD-Combined,Male,89,93,89,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1904.5626 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1627.4 +,21044,7.74,ADHD-Combined,Male,89,93,89,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4729.4863 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5101.8 +,21044,7.74,ADHD-Combined,Male,89,93,89,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7843.021 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7709.6 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4127.6 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,561.6 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.5 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61344.0 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1122035.4 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1139190.4 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1120056.0 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,445994.62 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,612658.75 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,811480.75 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,17155.0 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2146.1 +,21044,7.74,ADHD-Combined,Male,89,93,89,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,177402.3 +,21044,7.74,ADHD-Combined,Male,89,93,89,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,771616.5 +,21044,7.74,ADHD-Combined,Male,89,93,89,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21044,7.74,ADHD-Combined,Male,89,93,89,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,523889.06 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,881.0 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,926.1 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,21046,9.61,ADHD-Combined,Male,111,117,104,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1112338E7 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1191115.0 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1179016.0 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1177264.9 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16019.3 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,845.1 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,738.0 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,892.7 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,637.1 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,874.3 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1135.8 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1461463.5 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,212920.03 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,298521.28 +,21046,9.61,ADHD-Combined,Male,111,117,104,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,434.91058 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,665.4 +,21046,9.61,ADHD-Combined,Male,111,117,104,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,469.49066 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1344.6 +,21046,9.61,ADHD-Combined,Male,111,117,104,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3798.4854 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3495.3 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,45917.4 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10924.2 +,21046,9.61,ADHD-Combined,Male,111,117,104,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3495.2449 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4066.9 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,274.1 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4036.3 +,21046,9.61,ADHD-Combined,Male,111,117,104,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1614.6222 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2006.3 +,21046,9.61,ADHD-Combined,Male,111,117,104,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5004.797 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5707.4 +,21046,9.61,ADHD-Combined,Male,111,117,104,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7084.92 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7818.3 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3836.6 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,450.4 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,8.9 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1611691.0 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,169.6 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,208255.14 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,287821.38 +,21046,9.61,ADHD-Combined,Male,111,117,104,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,369.7405 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,542.9 +,21046,9.61,ADHD-Combined,Male,111,117,104,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,434.91058 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1819.6 +,21046,9.61,ADHD-Combined,Male,111,117,104,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3141.4644 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3635.3 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,41244.8 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10100.2 +,21046,9.61,ADHD-Combined,Male,111,117,104,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3299.7346 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4008.7 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,338.8 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4348.0 +,21046,9.61,ADHD-Combined,Male,111,117,104,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1775.5525 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1827.4 +,21046,9.61,ADHD-Combined,Male,111,117,104,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5797.478 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5842.2 +,21046,9.61,ADHD-Combined,Male,111,117,104,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7804.4507 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7472.1 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4066.0 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,627.6 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,20.6 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60075.0 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1072158.9 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1081455.9 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1069170.0 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,421175.2 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,586342.7 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,735613.7 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9297.0 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1282.6 +,21046,9.61,ADHD-Combined,Male,111,117,104,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,155690.02 +,21046,9.61,ADHD-Combined,Male,111,117,104,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,713669.7 +,21046,9.61,ADHD-Combined,Male,111,117,104,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,21046,9.61,ADHD-Combined,Male,111,117,104,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,456338.25 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1165.4 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1766.7 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2107404,13.08,Typically Developing Children,Male,109,91,124,http://purl.org/nidash/fsl#,Background (mm^3),,,1.153179E7 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1169620.0 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1149895.0 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1149102.2 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21080.1 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,792.6 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,971.4 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,1072.0 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,735.0 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1194.7 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1288.3 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1241306.9 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,238237.31 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,251121.67 +,2107404,13.08,Typically Developing Children,Male,109,91,124,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,41.25 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,494.9 +,2107404,13.08,Typically Developing Children,Male,109,91,124,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,34.0 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1509.3 +,2107404,13.08,Typically Developing Children,Male,109,91,124,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,139.5 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3519.9 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52994.0 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13403.9 +,2107404,13.08,Typically Developing Children,Male,109,91,124,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,170.75 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3820.1 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,107.8 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7872.5 +,2107404,13.08,Typically Developing Children,Male,109,91,124,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,51.0 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2315.6 +,2107404,13.08,Typically Developing Children,Male,109,91,124,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,131.5 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5673.0 +,2107404,13.08,Typically Developing Children,Male,109,91,124,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,430.0 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7667.0 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4360.9 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,466.8 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1680425.0 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,77.8 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,228861.27 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,240005.05 +,2107404,13.08,Typically Developing Children,Male,109,91,124,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,11.0 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,405.8 +,2107404,13.08,Typically Developing Children,Male,109,91,124,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,71.0 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1342.5 +,2107404,13.08,Typically Developing Children,Male,109,91,124,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,209.5 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3252.7 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,52670.2 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11802.9 +,2107404,13.08,Typically Developing Children,Male,109,91,124,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,262.5 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3192.4 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,17.4 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7486.0 +,2107404,13.08,Typically Developing Children,Male,109,91,124,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,106.75 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2210.1 +,2107404,13.08,Typically Developing Children,Male,109,91,124,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,376.25 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4979.5 +,2107404,13.08,Typically Developing Children,Male,109,91,124,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,510.75 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7586.3 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4416.8 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,445.4 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58793.0 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1020279.3 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1036036.3 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1017740.0 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,467098.6 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,491126.72 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,657625.75 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15757.0 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,5413.8 +,2107404,13.08,Typically Developing Children,Male,109,91,124,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,262084.75 +,2107404,13.08,Typically Developing Children,Male,109,91,124,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,681590.0 +,2107404,13.08,Typically Developing Children,Male,109,91,124,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2107404,13.08,Typically Developing Children,Male,109,91,124,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,595207.75 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,884.0 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1696.3 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2107638,10.41,ADHD-Combined,Male,109,106,109,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1109126E7 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1201033.0 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1188835.0 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1188576.1 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18054.3 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,873.4 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,531.5 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,538.5 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,538.5 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,798.7 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,774.8 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1490371.8 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,202214.58 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,291285.9 +,2107638,10.41,ADHD-Combined,Male,109,106,109,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,465.50064 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,821.2 +,2107638,10.41,ADHD-Combined,Male,109,106,109,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,690.27094 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1854.8 +,2107638,10.41,ADHD-Combined,Male,109,106,109,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4162.906 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3997.2 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59964.3 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12185.1 +,2107638,10.41,ADHD-Combined,Male,109,106,109,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3293.0845 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3818.7 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,317.5 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4787.5 +,2107638,10.41,ADHD-Combined,Male,109,106,109,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2108.053 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2114.7 +,2107638,10.41,ADHD-Combined,Male,109,106,109,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6181.8486 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6241.3 +,2107638,10.41,ADHD-Combined,Male,109,106,109,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7115.51 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8024.5 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3824.1 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,363.8 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1560615.0 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,87.3 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,199679.55 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,289802.12 +,2107638,10.41,ADHD-Combined,Male,109,106,109,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,134.33018 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,807.3 +,2107638,10.41,ADHD-Combined,Male,109,106,109,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,892.4312 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2087.8 +,2107638,10.41,ADHD-Combined,Male,109,106,109,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4282.606 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4033.3 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58161.7 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11182.1 +,2107638,10.41,ADHD-Combined,Male,109,106,109,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3194.6643 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3872.2 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,310.6 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3617.3 +,2107638,10.41,ADHD-Combined,Male,109,106,109,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1941.8027 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2029.0 +,2107638,10.41,ADHD-Combined,Male,109,106,109,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6139.2886 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6311.9 +,2107638,10.41,ADHD-Combined,Male,109,106,109,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7135.46 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7842.2 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3899.2 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,568.3 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,22.9 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63637.0 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1049768.1 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1058931.1 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1046799.0 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,401894.12 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,581088.0 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,763937.0 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9163.0 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,897.2 +,2107638,10.41,ADHD-Combined,Male,109,106,109,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,154064.75 +,2107638,10.41,ADHD-Combined,Male,109,106,109,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,742683.7 +,2107638,10.41,ADHD-Combined,Male,109,106,109,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2107638,10.41,ADHD-Combined,Male,109,106,109,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,481630.9 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1323.6 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1903.3 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1214403.0 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1197163.0 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1196953.5 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16575.4 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,824.2 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,591.5 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,620.8 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,436.9 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,782.3 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1092.0 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1189071.2 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,216128.9 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,291859.12 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,670.5 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1332.0 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4299.2 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,46591.9 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12850.9 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3741.7 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,558.9 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5905.4 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1792.4 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5338.5 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7838.4 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4291.1 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,521.4 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,43.8 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1605276.0 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,198.3 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,216885.16 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,293954.34 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,664.3 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1578.9 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4510.2 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,45322.0 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10873.4 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3783.8 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,460.7 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5566.0 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1838.9 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5444.8 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7361.9 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4264.2 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,469.4 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,49.9 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60935.0 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1082929.5 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1095973.5 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1079858.0 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,433014.06 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,585813.5 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,741216.5 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13044.0 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1228.9 +,2136051,9.23,Typically Developing Children,Male,118,106,127,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,586.5 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1272.6 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2138826,8.46,Typically Developing Children,Female,119,106,124,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3062649E7 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1106640.0 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1095827.0 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1096691.8 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17464.2 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,839.9 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,517.3 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,502.9 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,527.8 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,836.8 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,641.7 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1315099.6 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,177438.69 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,288191.06 +,2138826,8.46,Typically Developing Children,Female,119,106,124,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,606.9996 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,696.2 +,2138826,8.46,Typically Developing Children,Female,119,106,124,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,957.9993 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1296.0 +,2138826,8.46,Typically Developing Children,Female,119,106,124,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4131.997 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4089.3 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,46413.1 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11757.8 +,2138826,8.46,Typically Developing Children,Female,119,106,124,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2906.9978 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3399.3 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,590.9 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3591.2 +,2138826,8.46,Typically Developing Children,Female,119,106,124,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1611.9989 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1721.4 +,2138826,8.46,Typically Developing Children,Female,119,106,124,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5315.996 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5938.7 +,2138826,8.46,Typically Developing Children,Female,119,106,124,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6966.995 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6698.1 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3782.8 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,506.5 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,16.9 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1396537.0 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,177.9 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,175705.92 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,285292.1 +,2138826,8.46,Typically Developing Children,Female,119,106,124,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,457.99966 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,680.2 +,2138826,8.46,Typically Developing Children,Female,119,106,124,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,576.9996 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1609.0 +,2138826,8.46,Typically Developing Children,Female,119,106,124,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4160.997 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4208.3 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,43158.6 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10201.6 +,2138826,8.46,Typically Developing Children,Female,119,106,124,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2895.998 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3654.5 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,491.2 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3220.2 +,2138826,8.46,Typically Developing Children,Female,119,106,124,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1556.9989 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1598.1 +,2138826,8.46,Typically Developing Children,Female,119,106,124,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5281.996 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5895.0 +,2138826,8.46,Typically Developing Children,Female,119,106,124,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7111.995 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6556.4 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4055.0 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,481.9 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,35.9 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57626.0 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,986574.8 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,995004.8 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,983241.0 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,353144.62 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,573483.2 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,722815.2 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8430.0 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,644.7 +,2138826,8.46,Typically Developing Children,Female,119,106,124,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,118039.914 +,2138826,8.46,Typically Developing Children,Female,119,106,124,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,540170.56 +,2138826,8.46,Typically Developing Children,Female,119,106,124,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,1.7 +,2138826,8.46,Typically Developing Children,Female,119,106,124,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,397499.72 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,770.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2145.4 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,http://purl.org/nidash/fsl#,Background (mm^3),,,9321819.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1186263.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1175617.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1176461.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20786.3 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,678.1 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,748.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,494.8 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,415.4 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,764.9 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,727.9 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1441253.1 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,197473.9 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,292432.16 +,2140063,9.42,Typically Developing Children,Male,137,124,141,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,364.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,591.8 +,2140063,9.42,Typically Developing Children,Male,137,124,141,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,853.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1515.3 +,2140063,9.42,Typically Developing Children,Male,137,124,141,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3932.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3562.4 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57471.8 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13868.3 +,2140063,9.42,Typically Developing Children,Male,137,124,141,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3629.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3754.8 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,227.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2876.9 +,2140063,9.42,Typically Developing Children,Male,137,124,141,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1719.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2102.6 +,2140063,9.42,Typically Developing Children,Male,137,124,141,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5913.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6257.3 +,2140063,9.42,Typically Developing Children,Male,137,124,141,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8101.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7296.6 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3895.8 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,288.5 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,27.6 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1531470.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,116.4 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,195925.86 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,293565.06 +,2140063,9.42,Typically Developing Children,Male,137,124,141,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,345.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,543.3 +,2140063,9.42,Typically Developing Children,Male,137,124,141,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1286.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1607.5 +,2140063,9.42,Typically Developing Children,Male,137,124,141,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3931.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3745.7 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54436.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11853.8 +,2140063,9.42,Typically Developing Children,Male,137,124,141,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3968.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3901.1 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,389.2 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3212.5 +,2140063,9.42,Typically Developing Children,Male,137,124,141,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1857.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2038.5 +,2140063,9.42,Typically Developing Children,Male,137,124,141,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5926.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6270.6 +,2140063,9.42,Typically Developing Children,Male,137,124,141,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8005.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7393.9 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4223.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,425.1 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,24.4 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60037.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1041143.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1048260.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1038510.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,393399.75 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,585997.2 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,758411.2 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7117.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1194.5 +,2140063,9.42,Typically Developing Children,Male,137,124,141,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,178574.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,687505.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2140063,9.42,Typically Developing Children,Male,137,124,141,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,487346.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,843.1 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1841.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,http://purl.org/nidash/fsl#,Background (mm^3),,,9319343.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1351047.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1338847.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1339541.4 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21350.2 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,707.3 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,795.3 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,645.4 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,499.6 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,850.1 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,801.4 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1667753.8 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,249026.31 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,311833.1 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,724.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,686.7 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1331.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1663.4 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3458.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4143.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59483.4 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15423.5 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4235.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4383.1 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,528.7 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4074.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1859.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2127.7 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5713.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6214.7 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8694.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8236.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4142.9 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,318.5 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,46.4 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1757682.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,183.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,249631.9 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,313405.03 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,526.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,639.4 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1401.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1993.1 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3664.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4119.4 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60907.5 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14515.6 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4637.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4690.8 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,378.9 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3456.6 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1889.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2164.2 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5768.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6096.2 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8406.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7975.7 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4099.5 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,482.6 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.2 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64678.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1191689.4 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1200495.4 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1187748.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,498658.22 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,625238.1 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,811650.1 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8806.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1592.3 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,194125.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,715647.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2141250,12.83,ADHD-Inattentive,Male,129,119,133,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,585817.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,638.6 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1424.7 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,http://purl.org/nidash/fsl#,Background (mm^3),,,9325319.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1212971.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1203325.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1204148.6 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20984.5 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,726.8 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,668.4 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,608.8 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,401.4 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,838.4 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,680.8 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1492474.1 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,199060.56 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,297418.38 +,2207418,13.17,ADHD-Combined,Male,97,87,107,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,249.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,727.3 +,2207418,13.17,ADHD-Combined,Male,97,87,107,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1245.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1658.2 +,2207418,13.17,ADHD-Combined,Male,97,87,107,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3047.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3756.3 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,65213.8 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13691.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3550.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3971.6 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,276.1 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3143.6 +,2207418,13.17,ADHD-Combined,Male,97,87,107,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1840.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2087.8 +,2207418,13.17,ADHD-Combined,Male,97,87,107,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5382.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5837.2 +,2207418,13.17,ADHD-Combined,Male,97,87,107,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7453.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8902.3 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4062.9 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,363.6 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,12.8 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1607043.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,170.3 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,195950.69 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,293156.97 +,2207418,13.17,ADHD-Combined,Male,97,87,107,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,164.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,727.9 +,2207418,13.17,ADHD-Combined,Male,97,87,107,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1976.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1667.5 +,2207418,13.17,ADHD-Combined,Male,97,87,107,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3022.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3969.7 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63617.7 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13231.1 +,2207418,13.17,ADHD-Combined,Male,97,87,107,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3173.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4523.3 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,391.5 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2737.7 +,2207418,13.17,ADHD-Combined,Male,97,87,107,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1769.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1917.3 +,2207418,13.17,ADHD-Combined,Male,97,87,107,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5182.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5850.8 +,2207418,13.17,ADHD-Combined,Male,97,87,107,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8277.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8021.5 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4221.1 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,477.6 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,8.9 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63503.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1051047.6 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1058071.6 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1048123.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,395011.25 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,590575.3 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,783019.3 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7024.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1298.6 +,2207418,13.17,ADHD-Combined,Male,97,87,107,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,179267.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,716570.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2207418,13.17,ADHD-Combined,Male,97,87,107,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,531151.0 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,970.1 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2218.8 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2208591,12.5,Typically Developing Children,Male,113,109,113,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1013081E7 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1163091.0 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1149454.0 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1149409.4 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19048.4 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,789.7 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,1058.8 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,921.0 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,722.1 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,801.6 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,834.6 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1629515.9 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,224809.62 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,252441.72 +,2208591,12.5,Typically Developing Children,Male,113,109,113,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,464.9414 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,520.7 +,2208591,12.5,Typically Developing Children,Male,113,109,113,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1238.3789 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1603.0 +,2208591,12.5,Typically Developing Children,Male,113,109,113,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2358.1055 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3596.4 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55120.5 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12094.8 +,2208591,12.5,Typically Developing Children,Male,113,109,113,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3352.1484 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4032.4 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,387.7 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4746.1 +,2208591,12.5,Typically Developing Children,Male,113,109,113,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1970.5078 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2436.1 +,2208591,12.5,Typically Developing Children,Male,113,109,113,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5576.66 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6002.7 +,2208591,12.5,Typically Developing Children,Male,113,109,113,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7468.9453 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8024.5 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3805.6 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,522.4 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,16.9 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1571364.0 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,182.3 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,221036.38 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,250660.69 +,2208591,12.5,Typically Developing Children,Male,113,109,113,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,402.53906 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,587.9 +,2208591,12.5,Typically Developing Children,Male,113,109,113,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,996.6797 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1882.1 +,2208591,12.5,Typically Developing Children,Male,113,109,113,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3539.3555 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3616.5 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56500.1 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13343.6 +,2208591,12.5,Typically Developing Children,Male,113,109,113,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3854.8828 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4141.4 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,758.8 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3523.9 +,2208591,12.5,Typically Developing Children,Male,113,109,113,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1805.2734 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2269.3 +,2208591,12.5,Typically Developing Children,Male,113,109,113,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5846.4844 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6185.3 +,2208591,12.5,Typically Developing Children,Male,113,109,113,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7243.9453 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8085.0 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3926.7 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,432.7 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,24.3 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62593.0 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1014746.4 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1024420.4 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1011478.0 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,445846.0 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,503102.4 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,678599.4 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9674.0 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1210.6 +,2208591,12.5,Typically Developing Children,Male,113,109,113,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,210197.47 +,2208591,12.5,Typically Developing Children,Male,113,109,113,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,664352.06 +,2208591,12.5,Typically Developing Children,Male,113,109,113,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2208591,12.5,Typically Developing Children,Male,113,109,113,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,534398.75 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,986.1 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2437.9 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2228148,13.75,ADHD-Combined,Male,118,117,116,http://purl.org/nidash/fsl#,Background (mm^3),,,1.101236E7 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1204318.0 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1189968.0 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1189924.6 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22474.7 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,789.9 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,750.2 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,792.6 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,555.1 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,782.4 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,943.5 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1577777.2 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,223213.94 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,261978.78 +,2228148,13.75,ADHD-Combined,Male,118,117,116,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,472.85156 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,402.3 +,2228148,13.75,ADHD-Combined,Male,118,117,116,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1388.6719 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1629.9 +,2228148,13.75,ADHD-Combined,Male,118,117,116,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3090.2344 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3171.8 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63876.1 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13779.1 +,2228148,13.75,ADHD-Combined,Male,118,117,116,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3832.0312 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4038.9 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,227.3 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4668.7 +,2228148,13.75,ADHD-Combined,Male,118,117,116,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1559.1797 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1943.4 +,2228148,13.75,ADHD-Combined,Male,118,117,116,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5040.5273 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4529.8 +,2228148,13.75,ADHD-Combined,Male,118,117,116,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8403.223 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8500.5 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4182.8 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,247.8 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,40.1 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1662725.0 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,123.5 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,226488.56 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,266457.3 +,2228148,13.75,ADHD-Combined,Male,118,117,116,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,247.85156 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,470.8 +,2228148,13.75,ADHD-Combined,Male,118,117,116,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1105.6641 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1723.4 +,2228148,13.75,ADHD-Combined,Male,118,117,116,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3159.668 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3219.3 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63369.8 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12791.4 +,2228148,13.75,ADHD-Combined,Male,118,117,116,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3707.2266 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3930.1 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,214.5 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4923.3 +,2228148,13.75,ADHD-Combined,Male,118,117,116,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1683.9844 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1819.9 +,2228148,13.75,ADHD-Combined,Male,118,117,116,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5043.164 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5194.4 +,2228148,13.75,ADHD-Combined,Male,118,117,116,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8105.2734 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8073.4 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3915.6 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,400.4 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.2 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58330.0 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1038510.6 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1048564.6 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1036434.0 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,449702.5 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,528436.1 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,714553.1 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10054.0 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,546.1 +,2228148,13.75,ADHD-Combined,Male,118,117,116,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,223867.97 +,2228148,13.75,ADHD-Combined,Male,118,117,116,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,674993.0 +,2228148,13.75,ADHD-Combined,Male,118,117,116,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2228148,13.75,ADHD-Combined,Male,118,117,116,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,556327.44 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,710.1 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2013.1 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2230510,9.17,ADHD-Combined,Male,95,93,98,http://purl.org/nidash/fsl#,Background (mm^3),,,1.111929E7 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,992462.0 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,983423.0 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,983037.1 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16385.9 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,874.4 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,613.5 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,594.5 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,342.0 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,706.3 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,694.8 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1207066.8 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,164517.36 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,234008.72 +,2230510,9.17,ADHD-Combined,Male,95,93,98,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,410.97058 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,624.4 +,2230510,9.17,ADHD-Combined,Male,95,93,98,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,293.93042 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1448.2 +,2230510,9.17,ADHD-Combined,Male,95,93,98,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3279.7844 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2897.8 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54943.6 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11381.0 +,2230510,9.17,ADHD-Combined,Male,95,93,98,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3065.6543 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3308.8 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,286.2 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2490.6 +,2230510,9.17,ADHD-Combined,Male,95,93,98,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1478.962 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1579.9 +,2230510,9.17,ADHD-Combined,Male,95,93,98,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4802.6367 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5123.3 +,2230510,9.17,ADHD-Combined,Male,95,93,98,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6175.1987 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6371.5 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3609.6 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,251.3 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,6.1 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1352017.0 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,57.9 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,165831.88 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,235739.16 +,2230510,9.17,ADHD-Combined,Male,95,93,98,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,357.7705 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,512.6 +,2230510,9.17,ADHD-Combined,Male,95,93,98,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,345.80048 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1376.6 +,2230510,9.17,ADHD-Combined,Male,95,93,98,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3412.7847 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3230.1 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54744.9 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11427.8 +,2230510,9.17,ADHD-Combined,Male,95,93,98,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2387.3533 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3452.5 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,257.9 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2534.6 +,2230510,9.17,ADHD-Combined,Male,95,93,98,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1403.152 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1412.3 +,2230510,9.17,ADHD-Combined,Male,95,93,98,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4561.9062 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5076.5 +,2230510,9.17,ADHD-Combined,Male,95,93,98,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,5597.9775 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6557.1 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3586.9 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,229.7 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,1.9 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,51661.0 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,854240.1 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,859934.1 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,852085.0 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,330349.25 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,469747.88 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,630752.9 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,5694.0 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,908.7 +,2230510,9.17,ADHD-Combined,Male,95,93,98,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,122179.29 +,2230510,9.17,ADHD-Combined,Male,95,93,98,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,631351.9 +,2230510,9.17,ADHD-Combined,Male,95,93,98,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2230510,9.17,ADHD-Combined,Male,95,93,98,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,399850.4 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,923.1 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2370.8 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2260910,12.07,ADHD-Combined,Male,98,88,108,http://purl.org/nidash/fsl#,Background (mm^3),,,1.110773E7 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1270522.0 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1250351.0 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1250360.8 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18070.9 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,754.6 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,439.9 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,510.3 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,524.2 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,908.1 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,824.8 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1553050.9 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,224441.64 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,301559.72 +,2260910,12.07,ADHD-Combined,Male,98,88,108,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,603.8208 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,714.4 +,2260910,12.07,ADHD-Combined,Male,98,88,108,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1129.1715 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1748.5 +,2260910,12.07,ADHD-Combined,Male,98,88,108,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4083.1057 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4165.1 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54110.3 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13593.4 +,2260910,12.07,ADHD-Combined,Male,98,88,108,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4119.0156 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4224.9 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,396.6 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,9799.7 +,2260910,12.07,ADHD-Combined,Male,98,88,108,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1736.9824 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1853.2 +,2260910,12.07,ADHD-Combined,Male,98,88,108,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5756.248 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5477.8 +,2260910,12.07,ADHD-Combined,Male,98,88,108,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7821.7407 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7294.3 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4003.4 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,487.8 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,46.8 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1647233.0 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,132.3 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,223918.61 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,304676.75 +,2260910,12.07,ADHD-Combined,Male,98,88,108,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,444.2206 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,668.9 +,2260910,12.07,ADHD-Combined,Male,98,88,108,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,695.59094 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1885.6 +,2260910,12.07,ADHD-Combined,Male,98,88,108,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3999.3154 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3990.7 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53768.5 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13208.0 +,2260910,12.07,ADHD-Combined,Male,98,88,108,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3783.8552 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4331.0 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,248.5 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5188.2 +,2260910,12.07,ADHD-Combined,Male,98,88,108,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1884.6125 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1744.0 +,2260910,12.07,ADHD-Combined,Male,98,88,108,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5587.338 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5475.5 +,2260910,12.07,ADHD-Combined,Male,98,88,108,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7489.24 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7321.9 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4085.9 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,677.1 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.4 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60782.0 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1119181.8 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1135525.8 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1115285.0 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,448360.25 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,606236.5 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,775946.5 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,16344.0 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,716.9 +,2260910,12.07,ADHD-Combined,Male,98,88,108,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,184455.3 +,2260910,12.07,ADHD-Combined,Male,98,88,108,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,731967.8 +,2260910,12.07,ADHD-Combined,Male,98,88,108,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2260910,12.07,ADHD-Combined,Male,98,88,108,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,509807.0 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,922.2 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1517.5 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2268253,14.83,Typically Developing Children,Male,124,112,130,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1007969E7 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1303048.0 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1289901.0 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1289444.1 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22843.4 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,697.2 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,666.8 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,647.9 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,610.3 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,916.9 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,782.9 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1761854.4 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,227432.52 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,302991.06 +,2268253,14.83,Typically Developing Children,Male,124,112,130,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,393.75 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,518.8 +,2268253,14.83,Typically Developing Children,Male,124,112,130,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1542.4805 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1817.0 +,2268253,14.83,Typically Developing Children,Male,124,112,130,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4674.0234 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4637.7 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,65298.4 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14615.2 +,2268253,14.83,Typically Developing Children,Male,124,112,130,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3459.375 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4443.6 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,313.4 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4438.4 +,2268253,14.83,Typically Developing Children,Male,124,112,130,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1886.1328 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,3182.7 +,2268253,14.83,Typically Developing Children,Male,124,112,130,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5799.9023 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5659.0 +,2268253,14.83,Typically Developing Children,Male,124,112,130,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8009.4727 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9606.8 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,5430.6 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,248.5 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,13.7 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1780000.0 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,192.1 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,226110.39 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,301759.22 +,2268253,14.83,Typically Developing Children,Male,124,112,130,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,370.01953 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,607.7 +,2268253,14.83,Typically Developing Children,Male,124,112,130,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1189.1602 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2144.4 +,2268253,14.83,Typically Developing Children,Male,124,112,130,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4347.0703 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4835.4 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64589.3 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13133.9 +,2268253,14.83,Typically Developing Children,Male,124,112,130,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4194.1406 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4570.1 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,396.9 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4722.5 +,2268253,14.83,Typically Developing Children,Male,124,112,130,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1916.0156 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2545.0 +,2268253,14.83,Typically Developing Children,Male,124,112,130,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6115.4297 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6157.4 +,2268253,14.83,Typically Developing Children,Male,124,112,130,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7334.4727 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9683.4 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,5078.0 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,325.5 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,23.2 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,72722.0 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1134102.1 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1144010.1 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1131366.0 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,453542.9 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,604750.25 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,808633.25 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9908.0 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1393.0 +,2268253,14.83,Typically Developing Children,Male,124,112,130,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,175957.03 +,2268253,14.83,Typically Developing Children,Male,124,112,130,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,751638.9 +,2268253,14.83,Typically Developing Children,Male,124,112,130,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2268253,14.83,Typically Developing Children,Male,124,112,130,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,611457.7 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1018.7 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1953.1 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2276801,13,ADHD-Inattentive,Male,110,92,124,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1011197E7 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1221528.0 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1206939.0 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1206074.4 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20065.9 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,835.9 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,730.4 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,587.9 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,456.7 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,831.7 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,790.4 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1609518.9 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,204701.12 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,289152.78 +,2276801,13,ADHD-Inattentive,Male,110,92,124,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,207.42188 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,480.8 +,2276801,13,ADHD-Inattentive,Male,110,92,124,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,861.3281 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1554.8 +,2276801,13,ADHD-Inattentive,Male,110,92,124,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3884.7656 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3808.3 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55211.4 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,23565.8 +,2276801,13,ADHD-Inattentive,Male,110,92,124,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3689.6484 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4108.7 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,605.5 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5217.0 +,2276801,13,ADHD-Inattentive,Male,110,92,124,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1801.7578 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2199.7 +,2276801,13,ADHD-Inattentive,Male,110,92,124,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5839.453 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5588.1 +,2276801,13,ADHD-Inattentive,Male,110,92,124,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8027.9297 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8580.3 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4034.9 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,419.6 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,21.4 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1668542.0 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,85.7 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,205634.69 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,288618.75 +,2276801,13,ADHD-Inattentive,Male,110,92,124,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,391.9922 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,559.1 +,2276801,13,ADHD-Inattentive,Male,110,92,124,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1130.2734 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1602.2 +,2276801,13,ADHD-Inattentive,Male,110,92,124,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3694.9219 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3695.5 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58455.1 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,17755.1 +,2276801,13,ADHD-Inattentive,Male,110,92,124,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3328.418 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4357.7 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,506.1 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4197.1 +,2276801,13,ADHD-Inattentive,Male,110,92,124,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1833.3984 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2137.0 +,2276801,13,ADHD-Inattentive,Male,110,92,124,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5596.875 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5769.3 +,2276801,13,ADHD-Inattentive,Male,110,92,124,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7715.039 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8282.9 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3796.8 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,393.7 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.4 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62138.0 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1053903.4 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1064798.4 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1051023.0 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,410335.8 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,577771.56 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,754527.56 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10895.0 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1900.1 +,2276801,13,ADHD-Inattentive,Male,110,92,124,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,186895.9 +,2276801,13,ADHD-Inattentive,Male,110,92,124,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,751225.75 +,2276801,13,ADHD-Inattentive,Male,110,92,124,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2276801,13,ADHD-Inattentive,Male,110,92,124,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,534949.8 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,735.3 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2179.6 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,http://purl.org/nidash/fsl#,Background (mm^3),,,9322030.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1160781.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1150071.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1150503.9 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20368.3 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,661.2 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,510.6 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,611.4 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,435.1 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,761.3 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,707.1 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1532514.1 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,202366.6 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,270792.84 +,2296326,12.17,Typically Developing Children,Male,102,97,105,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,508.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,524.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1228.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1710.9 +,2296326,12.17,Typically Developing Children,Male,102,97,105,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4004.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4366.1 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55834.9 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13427.5 +,2296326,12.17,Typically Developing Children,Male,102,97,105,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3872.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3862.2 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,347.5 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3361.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1917.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2323.2 +,2296326,12.17,Typically Developing Children,Male,102,97,105,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5649.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5942.9 +,2296326,12.17,Typically Developing Children,Male,102,97,105,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7696.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8772.6 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3944.9 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,411.5 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,25.9 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1537783.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,208.6 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,205215.3 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,272927.16 +,2296326,12.17,Typically Developing Children,Male,102,97,105,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,495.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,516.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1265.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1698.8 +,2296326,12.17,Typically Developing Children,Male,102,97,105,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3974.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4419.5 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54996.8 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12478.5 +,2296326,12.17,Typically Developing Children,Male,102,97,105,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3997.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3993.2 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,414.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2733.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1879.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2223.9 +,2296326,12.17,Typically Developing Children,Male,102,97,105,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5729.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5796.3 +,2296326,12.17,Typically Developing Children,Male,102,97,105,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7405.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7701.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4067.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,455.9 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,22.1 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63399.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1015933.9 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1023163.9 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1014120.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,407581.88 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,543720.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,717985.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7230.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,984.7 +,2296326,12.17,Typically Developing Children,Male,102,97,105,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,230386.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,680190.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2296326,12.17,Typically Developing Children,Male,102,97,105,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,528628.0 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1017.7 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2666.3 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1105894E7 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1022002.0 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1005921.0 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1005003.56 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18551.4 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1064.1 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,615.3 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,694.8 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,602.0 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,931.5 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,829.8 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1500924.9 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,187941.97 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,232203.77 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,450.8706 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,630.7 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1138.4816 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,2011.0 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4222.756 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3928.8 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,41380.7 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,9398.9 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4350.436 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4101.1 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,682.4 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3957.3 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2013.6228 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2130.6 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5449.0176 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5925.1 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7953.411 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8491.0 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4816.0 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,660.4 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,6.3 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1787009.0 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,98.8 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,188170.89 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,232130.92 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,339.15045 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,637.9 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,692.93097 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1897.4 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4007.2954 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4061.4 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,38550.6 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,9434.8 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4189.506 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4130.3 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,210.1 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6364.2 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1572.0621 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1806.6 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6236.3784 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5224.6 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8353.741 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8895.0 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4327.9 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,470.9 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,4.8 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65468.0 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,907685.56 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,919465.56 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,906740.0 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,376112.88 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,464334.7 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,610627.7 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11780.0 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,4007.6 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,261256.25 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,701645.1 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2297413,11.06,ADHD-Inattentive,Male,105,94,114,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,531028.5 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,605.6 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1184.4 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2299519,11.89,ADHD-Combined,Male,86,79,110,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3052462E7 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1279543.0 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1251377.0 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1251431.2 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22030.4 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1191.9 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,529.4 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,577.0 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,423.6 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1160.4 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,965.1 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1578875.9 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,232609.12 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,284305.1 +,2299519,11.89,ADHD-Combined,Male,86,79,110,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,658.9939 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,842.9 +,2299519,11.89,ADHD-Combined,Male,86,79,110,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,734.99316 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1888.6 +,2299519,11.89,ADHD-Combined,Male,86,79,110,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4612.957 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4635.4 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56807.8 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13245.7 +,2299519,11.89,ADHD-Combined,Male,86,79,110,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4652.9565 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4491.9 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,410.8 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7894.7 +,2299519,11.89,ADHD-Combined,Male,86,79,110,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2069.9807 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2308.0 +,2299519,11.89,ADHD-Combined,Male,86,79,110,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5460.949 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6109.9 +,2299519,11.89,ADHD-Combined,Male,86,79,110,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9403.912 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9090.0 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4668.9 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,539.1 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,42.8 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1638467.0 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,241.1 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,235713.7 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,288802.3 +,2299519,11.89,ADHD-Combined,Male,86,79,110,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,515.9952 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,680.3 +,2299519,11.89,ADHD-Combined,Male,86,79,110,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,962.991 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2245.4 +,2299519,11.89,ADHD-Combined,Male,86,79,110,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4958.954 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4946.7 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57567.8 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12754.7 +,2299519,11.89,ADHD-Combined,Male,86,79,110,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4306.96 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4493.8 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,569.3 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,16092.3 +,2299519,11.89,ADHD-Combined,Male,86,79,110,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1950.9818 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2147.0 +,2299519,11.89,ADHD-Combined,Male,86,79,110,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5539.9487 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5659.1 +,2299519,11.89,ADHD-Combined,Male,86,79,110,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8785.918 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9131.3 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4521.3 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,541.5 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.2 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,70140.0 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1113696.2 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1139271.2 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1111339.0 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,468322.8 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,573107.4 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,757932.4 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,25575.0 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1086.8 +,2299519,11.89,ADHD-Combined,Male,86,79,110,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,211904.03 +,2299519,11.89,ADHD-Combined,Male,86,79,110,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,618805.2 +,2299519,11.89,ADHD-Combined,Male,86,79,110,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2299519,11.89,ADHD-Combined,Male,86,79,110,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,535488.94 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,905.0 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1588.3 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2306976,11.53,ADHD-Combined,Male,111,104,115,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1110142E7 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1158763.0 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1144086.0 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1144051.6 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19983.1 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,944.8 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,697.1 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,738.8 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,706.7 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,904.6 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,864.0 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1389669.8 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,203496.56 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,267782.03 +,2306976,11.53,ADHD-Combined,Male,111,104,115,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,565.2508 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,697.5 +,2306976,11.53,ADHD-Combined,Male,111,104,115,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,457.52063 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1379.7 +,2306976,11.53,ADHD-Combined,Male,111,104,115,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3701.395 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3575.4 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60605.4 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15073.2 +,2306976,11.53,ADHD-Combined,Male,111,104,115,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3497.9048 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3481.5 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,463.5 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5836.5 +,2306976,11.53,ADHD-Combined,Male,111,104,115,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1760.9224 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1747.8 +,2306976,11.53,ADHD-Combined,Male,111,104,115,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4995.487 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5088.6 +,2306976,11.53,ADHD-Combined,Male,111,104,115,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7650.1704 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6921.6 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3883.6 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,345.2 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,6.8 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1522739.0 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,95.5 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,202000.08 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,265457.9 +,2306976,11.53,ADHD-Combined,Male,111,104,115,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,452.20062 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,642.5 +,2306976,11.53,ADHD-Combined,Male,111,104,115,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,750.12103 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1456.1 +,2306976,11.53,ADHD-Combined,Male,111,104,115,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3920.8455 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3728.5 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61173.5 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13266.2 +,2306976,11.53,ADHD-Combined,Male,111,104,115,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4087.0957 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3624.1 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,239.2 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4653.2 +,2306976,11.53,ADHD-Combined,Male,111,104,115,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1814.1226 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1657.3 +,2306976,11.53,ADHD-Combined,Male,111,104,115,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5164.397 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5172.2 +,2306976,11.53,ADHD-Combined,Male,111,104,115,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7904.2007 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6857.0 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4009.1 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,415.2 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,17.0 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55703.0 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,997260.56 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1008765.56 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,994379.0 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,405496.62 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,533239.94 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,711141.94 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11505.0 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,588.4 +,2306976,11.53,ADHD-Combined,Male,111,104,115,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,158275.53 +,2306976,11.53,ADHD-Combined,Male,111,104,115,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,675378.94 +,2306976,11.53,ADHD-Combined,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2306976,11.53,ADHD-Combined,Male,111,104,115,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,462113.12 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1109.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2609.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,http://purl.org/nidash/fsl#,Background (mm^3),,,9327509.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1130397.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1109552.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1110213.2 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17286.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,725.7 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,431.2 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,359.2 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,509.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,638.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,709.9 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1487156.2 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,190814.9 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,270134.1 +,2310449,10.33,Typically Developing Children,Male,119,108,125,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,468.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,460.1 +,2310449,10.33,Typically Developing Children,Male,119,108,125,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,351.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1203.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3192.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3257.6 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55339.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11868.8 +,2310449,10.33,Typically Developing Children,Male,119,108,125,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2835.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3554.7 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,405.3 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7027.8 +,2310449,10.33,Typically Developing Children,Male,119,108,125,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1728.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2026.3 +,2310449,10.33,Typically Developing Children,Male,119,108,125,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4318.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5474.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7586.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7294.3 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3729.4 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,429.6 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,13.8 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1497142.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,151.8 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,190448.97 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,270786.25 +,2310449,10.33,Typically Developing Children,Male,119,108,125,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,340.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,457.3 +,2310449,10.33,Typically Developing Children,Male,119,108,125,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1717.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1431.3 +,2310449,10.33,Typically Developing Children,Male,119,108,125,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3571.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3422.6 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54953.9 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11010.4 +,2310449,10.33,Typically Developing Children,Male,119,108,125,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3736.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3973.6 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,673.2 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7703.4 +,2310449,10.33,Typically Developing Children,Male,119,108,125,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1889.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1802.8 +,2310449,10.33,Typically Developing Children,Male,119,108,125,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5254.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5824.9 +,2310449,10.33,Typically Developing Children,Male,119,108,125,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7154.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6700.5 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3829.5 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,614.6 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.2 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55452.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,979432.25 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,995957.25 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,976875.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,381263.88 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,540920.4 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,706860.4 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,16525.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,798.6 +,2310449,10.33,Typically Developing Children,Male,119,108,125,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,201669.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,650608.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2310449,10.33,Typically Developing Children,Male,119,108,125,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,467908.0 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,753.7 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1804.3 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2344857,8.92,Typically Developing Children,Female,119,108,119,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1751443E7 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1209701.0 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1199127.0 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1199737.8 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18339.0 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1113.0 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,553.9 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,584.2 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,460.1 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,797.7 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,842.5 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1457130.8 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,192999.5 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,300367.94 +,2344857,8.92,Typically Developing Children,Female,119,108,119,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,536.00037 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,979.7 +,2344857,8.92,Typically Developing Children,Female,119,108,119,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,961.0007 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1531.7 +,2344857,8.92,Typically Developing Children,Female,119,108,119,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3595.0027 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4663.7 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62024.7 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13294.6 +,2344857,8.92,Typically Developing Children,Female,119,108,119,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3012.0022 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3624.9 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,435.1 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3289.8 +,2344857,8.92,Typically Developing Children,Female,119,108,119,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1351.001 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2102.5 +,2344857,8.92,Typically Developing Children,Female,119,108,119,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5349.004 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5768.9 +,2344857,8.92,Typically Developing Children,Female,119,108,119,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7780.0054 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7111.3 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3869.4 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,257.7 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,42.0 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1536129.0 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,132.3 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,194399.17 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,303670.16 +,2344857,8.92,Typically Developing Children,Female,119,108,119,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,458.00034 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,732.5 +,2344857,8.92,Typically Developing Children,Female,119,108,119,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,935.0007 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1535.3 +,2344857,8.92,Typically Developing Children,Female,119,108,119,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3149.0022 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5217.1 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60424.1 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11980.3 +,2344857,8.92,Typically Developing Children,Female,119,108,119,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3075.0022 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3635.0 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,377.0 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2793.9 +,2344857,8.92,Typically Developing Children,Female,119,108,119,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1782.0012 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1852.4 +,2344857,8.92,Typically Developing Children,Female,119,108,119,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5315.004 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5708.6 +,2344857,8.92,Typically Developing Children,Female,119,108,119,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7747.0054 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7183.7 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3632.6 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,362.9 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,13.2 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60929.0 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1054314.8 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1061551.8 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1051666.0 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,387398.7 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,604038.1 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,787853.1 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7237.0 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,675.1 +,2344857,8.92,Typically Developing Children,Female,119,108,119,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,141241.1 +,2344857,8.92,Typically Developing Children,Female,119,108,119,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,622297.5 +,2344857,8.92,Typically Developing Children,Female,119,108,119,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2344857,8.92,Typically Developing Children,Female,119,108,119,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,440790.34 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1176.1 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,3246.4 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2360428,8.56,Typically Developing Children,Male,113,102,119,http://purl.org/nidash/fsl#,Background (mm^3),,,1.305466E7 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1270188.0 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1250385.0 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1250918.4 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21140.1 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,904.8 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,653.5 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,783.7 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,341.8 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,775.5 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,965.6 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1507353.4 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,207662.86 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,312863.38 +,2360428,8.56,Typically Developing Children,Male,113,102,119,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,590.00354 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,587.4 +,2360428,8.56,Typically Developing Children,Male,113,102,119,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1392.0083 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1678.3 +,2360428,8.56,Typically Developing Children,Male,113,102,119,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4461.0264 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4497.9 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62506.9 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14184.4 +,2360428,8.56,Typically Developing Children,Male,113,102,119,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4091.0244 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4094.4 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,560.9 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6306.9 +,2360428,8.56,Typically Developing Children,Male,113,102,119,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1947.0116 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1948.9 +,2360428,8.56,Typically Developing Children,Male,113,102,119,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5432.032 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5595.5 +,2360428,8.56,Typically Developing Children,Male,113,102,119,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9231.055 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8614.1 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4158.4 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,506.0 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,34.0 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1654244.0 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,148.3 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,206291.28 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,307442.84 +,2360428,8.56,Typically Developing Children,Male,113,102,119,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,433.0026 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,580.0 +,2360428,8.56,Typically Developing Children,Male,113,102,119,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1251.0074 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1836.7 +,2360428,8.56,Typically Developing Children,Male,113,102,119,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4485.027 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4388.6 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62298.7 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13656.9 +,2360428,8.56,Typically Developing Children,Male,113,102,119,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3848.023 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4003.8 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,330.1 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6622.5 +,2360428,8.56,Typically Developing Children,Male,113,102,119,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1772.0106 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1770.2 +,2360428,8.56,Typically Developing Children,Male,113,102,119,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5016.03 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5680.8 +,2360428,8.56,Typically Developing Children,Male,113,102,119,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8669.052 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8332.4 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4316.1 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,643.1 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,25.9 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64310.0 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1100362.4 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1114905.4 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1097942.0 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,413954.16 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,620306.25 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,810042.25 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14543.0 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,759.9 +,2360428,8.56,Typically Developing Children,Male,113,102,119,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,194987.17 +,2360428,8.56,Typically Developing Children,Male,113,102,119,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,507193.06 +,2360428,8.56,Typically Developing Children,Male,113,102,119,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2360428,8.56,Typically Developing Children,Male,113,102,119,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,449355.7 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,696.1 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1634.4 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2371032,10.73,Typically Developing Children,Female,122,119,121,http://purl.org/nidash/fsl#,Background (mm^3),,,1.305931E7 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1140253.0 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1129129.0 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1130048.5 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19052.7 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,685.3 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,497.1 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,439.5 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,418.3 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,792.1 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,658.4 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1403020.5 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,190547.98 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,278931.66 +,2371032,10.73,Typically Developing Children,Female,122,119,121,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,386.00192 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,593.3 +,2371032,10.73,Typically Developing Children,Female,122,119,121,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1311.0066 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1520.3 +,2371032,10.73,Typically Developing Children,Female,122,119,121,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4101.0205 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3917.3 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59023.5 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12699.5 +,2371032,10.73,Typically Developing Children,Female,122,119,121,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3568.0178 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3526.6 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,311.0 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3703.0 +,2371032,10.73,Typically Developing Children,Female,122,119,121,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1782.0089 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1951.0 +,2371032,10.73,Typically Developing Children,Female,122,119,121,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5081.0254 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5100.7 +,2371032,10.73,Typically Developing Children,Female,122,119,121,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7911.0396 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6949.1 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3506.9 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,494.5 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,44.9 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1482130.0 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,116.5 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,185757.62 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,276965.22 +,2371032,10.73,Typically Developing Children,Female,122,119,121,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,395.00198 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,541.7 +,2371032,10.73,Typically Developing Children,Female,122,119,121,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1170.0059 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1550.9 +,2371032,10.73,Typically Developing Children,Female,122,119,121,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4134.0205 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4030.6 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58236.4 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12141.2 +,2371032,10.73,Typically Developing Children,Female,122,119,121,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3441.0173 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3548.3 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,435.8 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3330.6 +,2371032,10.73,Typically Developing Children,Female,122,119,121,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1797.009 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1781.4 +,2371032,10.73,Typically Developing Children,Female,122,119,121,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5076.0254 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5173.2 +,2371032,10.73,Typically Developing Children,Female,122,119,121,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7802.039 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6924.6 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3572.4 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,401.6 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.9 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55962.0 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,989855.5 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,998139.5 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,987183.0 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,376305.62 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,555896.9 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,729557.9 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8284.0 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,872.2 +,2371032,10.73,Typically Developing Children,Female,122,119,121,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,183088.92 +,2371032,10.73,Typically Developing Children,Female,122,119,121,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,579963.9 +,2371032,10.73,Typically Developing Children,Female,122,119,121,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2371032,10.73,Typically Developing Children,Female,122,119,121,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,448131.25 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1088.3 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1818.4 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,http://purl.org/nidash/fsl#,Background (mm^3),,,9316930.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1279470.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1258917.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1259840.9 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22726.3 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,936.1 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,761.2 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,662.8 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,529.8 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1052.5 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1106.3 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1650772.1 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,239196.81 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,287707.44 +,2377207,13.83,Typically Developing Children,Male,94,106,84,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,603.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,645.5 +,2377207,13.83,Typically Developing Children,Male,94,106,84,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1983.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1777.7 +,2377207,13.83,Typically Developing Children,Male,94,106,84,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4280.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4406.1 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55362.3 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14166.1 +,2377207,13.83,Typically Developing Children,Male,94,106,84,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3137.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3898.9 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,569.1 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8784.4 +,2377207,13.83,Typically Developing Children,Male,94,106,84,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2054.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2326.2 +,2377207,13.83,Typically Developing Children,Male,94,106,84,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6348.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6376.8 +,2377207,13.83,Typically Developing Children,Male,94,106,84,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9129.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9131.2 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4815.9 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,440.7 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,31.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1716935.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,160.4 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,237618.2 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,287757.44 +,2377207,13.83,Typically Developing Children,Male,94,106,84,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,491.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,536.6 +,2377207,13.83,Typically Developing Children,Male,94,106,84,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1016.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1805.1 +,2377207,13.83,Typically Developing Children,Male,94,106,84,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4405.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4478.3 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55773.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14222.9 +,2377207,13.83,Typically Developing Children,Male,94,106,84,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4363.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4163.9 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,742.7 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5745.2 +,2377207,13.83,Typically Developing Children,Male,94,106,84,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2052.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2365.2 +,2377207,13.83,Typically Developing Children,Male,94,106,84,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6272.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6308.8 +,2377207,13.83,Typically Developing Children,Male,94,106,84,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8585.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8862.3 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4774.3 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,682.6 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,29.8 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68441.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1122686.9 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1139279.9 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1119721.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,476815.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,575464.9 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,755415.9 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,16593.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,426.3 +,2377207,13.83,Typically Developing Children,Male,94,106,84,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,219751.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,731224.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2377207,13.83,Typically Developing Children,Male,94,106,84,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,609940.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,986.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2126.5 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1489055E7 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1316870.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1303681.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1303319.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21858.2 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,871.8 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,821.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,947.2 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,524.1 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,931.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1036.8 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1624925.6 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,236432.38 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,291887.53 +,2493190,13.33,Typically Developing Children,Male,119,110,123,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,251.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,609.3 +,2493190,13.33,Typically Developing Children,Male,119,110,123,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1550.5 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,2036.3 +,2493190,13.33,Typically Developing Children,Male,119,110,123,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3579.75 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4196.3 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,68480.7 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16079.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3100.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4763.9 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,67.9 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4112.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1661.25 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2474.9 +,2493190,13.33,Typically Developing Children,Male,119,110,123,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4890.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6448.8 +,2493190,13.33,Typically Developing Children,Male,119,110,123,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7791.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8707.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,5374.2 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,313.9 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1851465.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,213.9 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,240498.3 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,292150.78 +,2493190,13.33,Typically Developing Children,Male,119,110,123,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,240.5 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,615.2 +,2493190,13.33,Typically Developing Children,Male,119,110,123,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1295.5 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2169.6 +,2493190,13.33,Typically Developing Children,Male,119,110,123,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3346.25 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4410.2 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,69451.7 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15486.7 +,2493190,13.33,Typically Developing Children,Male,119,110,123,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3337.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,5229.9 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,330.4 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4704.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1680.75 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2435.7 +,2493190,13.33,Typically Developing Children,Male,119,110,123,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5404.5 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6254.8 +,2493190,13.33,Typically Developing Children,Male,119,110,123,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7152.75 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8699.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,5346.6 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,211.3 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,71848.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1136204.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1145328.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1132966.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,476930.66 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,584038.3 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,795274.3 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9124.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2710.9 +,2493190,13.33,Typically Developing Children,Male,119,110,123,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,254386.25 +,2493190,13.33,Typically Developing Children,Male,119,110,123,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,727480.5 +,2493190,13.33,Typically Developing Children,Male,119,110,123,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2493190,13.33,Typically Developing Children,Male,119,110,123,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,670323.25 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,713.0 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1495.1 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2497695,11.61,ADHD-Combined,Male,116,123,107,http://purl.org/nidash/fsl#,Background (mm^3),,,1.111016E7 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1108902.0 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1098356.0 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1098582.2 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16371.2 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,920.6 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,598.0 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,539.5 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,582.0 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,845.2 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,807.5 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1366676.1 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,189065.81 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,265153.28 +,2497695,11.61,ADHD-Combined,Male,116,123,107,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,573.2308 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,663.0 +,2497695,11.61,ADHD-Combined,Male,116,123,107,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1060.0115 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1401.5 +,2497695,11.61,ADHD-Combined,Male,116,123,107,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3443.3748 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3378.9 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55832.0 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12516.4 +,2497695,11.61,ADHD-Combined,Male,116,123,107,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3338.3047 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3422.8 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,339.9 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3248.6 +,2497695,11.61,ADHD-Combined,Male,116,123,107,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1731.6624 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2110.3 +,2497695,11.61,ADHD-Combined,Male,116,123,107,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5689.748 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6001.7 +,2497695,11.61,ADHD-Combined,Male,116,123,107,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7588.99 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7135.3 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3741.2 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,371.3 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1466694.0 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,114.5 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,187793.61 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,265260.6 +,2497695,11.61,ADHD-Combined,Male,116,123,107,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,409.64056 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,539.8 +,2497695,11.61,ADHD-Combined,Male,116,123,107,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1062.6715 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1460.3 +,2497695,11.61,ADHD-Combined,Male,116,123,107,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3434.0647 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3548.8 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54272.8 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12124.4 +,2497695,11.61,ADHD-Combined,Male,116,123,107,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3557.755 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3457.0 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,394.2 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3462.3 +,2497695,11.61,ADHD-Combined,Male,116,123,107,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1854.0226 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1800.5 +,2497695,11.61,ADHD-Combined,Male,116,123,107,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5946.438 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5929.4 +,2497695,11.61,ADHD-Combined,Male,116,123,107,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7014.4297 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7127.5 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3489.7 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,314.5 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.1 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57067.0 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,967069.3 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,974696.3 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,963995.0 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,376859.4 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,530413.9 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,697764.9 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7627.0 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,732.8 +,2497695,11.61,ADHD-Combined,Male,116,123,107,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,158365.98 +,2497695,11.61,ADHD-Combined,Male,116,123,107,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,662162.7 +,2497695,11.61,ADHD-Combined,Male,116,123,107,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2497695,11.61,ADHD-Combined,Male,116,123,107,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,439016.3 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,559.0 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1142.2 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2498847,9.75,Typically Developing Children,Male,113,101,120,http://purl.org/nidash/fsl#,Background (mm^3),,,9331878.0 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1141611.0 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1132376.0 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1132948.9 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17982.9 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,693.0 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,659.6 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,357.6 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,416.6 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,700.0 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,641.8 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1397453.4 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,181744.19 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,289018.06 +,2498847,9.75,Typically Developing Children,Male,113,101,120,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,444.00043 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,496.8 +,2498847,9.75,Typically Developing Children,Male,113,101,120,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,557.00055 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1337.3 +,2498847,9.75,Typically Developing Children,Male,113,101,120,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3185.003 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3315.5 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55368.5 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12630.7 +,2498847,9.75,Typically Developing Children,Male,113,101,120,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3265.0032 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3514.7 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,165.4 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2944.1 +,2498847,9.75,Typically Developing Children,Male,113,101,120,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1503.0015 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2050.6 +,2498847,9.75,Typically Developing Children,Male,113,101,120,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,3618.0034 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4899.9 +,2498847,9.75,Typically Developing Children,Male,113,101,120,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7430.0073 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7547.3 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3317.8 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,339.5 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,50.5 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1478092.0 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,117.1 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,182321.27 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,289384.4 +,2498847,9.75,Typically Developing Children,Male,113,101,120,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,457.00043 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,567.2 +,2498847,9.75,Typically Developing Children,Male,113,101,120,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,641.0006 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1463.1 +,2498847,9.75,Typically Developing Children,Male,113,101,120,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3310.0032 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3401.2 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56039.0 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12074.2 +,2498847,9.75,Typically Developing Children,Male,113,101,120,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3590.0034 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3700.0 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,237.4 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3108.1 +,2498847,9.75,Typically Developing Children,Male,113,101,120,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1686.0016 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1679.2 +,2498847,9.75,Typically Developing Children,Male,113,101,120,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,3186.003 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5289.9 +,2498847,9.75,Typically Developing Children,Male,113,101,120,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6907.0063 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7336.8 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3257.5 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,483.8 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,29.8 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,54386.0 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,999342.94 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1006300.94 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,996258.0 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,364065.44 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,578402.5 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,744886.5 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6958.0 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,931.6 +,2498847,9.75,Typically Developing Children,Male,113,101,120,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,162180.16 +,2498847,9.75,Typically Developing Children,Male,113,101,120,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,700325.6 +,2498847,9.75,Typically Developing Children,Male,113,101,120,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2498847,9.75,Typically Developing Children,Male,113,101,120,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,455552.44 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,932.8 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2325.7 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,25000,15.29,Typically Developing Children,Male,109,106,110,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1744238E7 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1207495.0 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1195449.0 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1195966.4 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19760.4 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,617.5 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,535.1 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,472.6 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,387.6 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,769.5 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,829.6 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1559337.0 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,218706.55 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,276500.53 +,25000,15.29,Typically Developing Children,Male,109,106,110,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,441.6 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,715.1 +,25000,15.29,Typically Developing Children,Male,109,106,110,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1284.0 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1726.5 +,25000,15.29,Typically Developing Children,Male,109,106,110,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4150.8003 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3772.1 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60958.1 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13612.2 +,25000,15.29,Typically Developing Children,Male,109,106,110,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4056.0002 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4076.2 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,424.5 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3219.1 +,25000,15.29,Typically Developing Children,Male,109,106,110,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1762.8 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2161.0 +,25000,15.29,Typically Developing Children,Male,109,106,110,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5899.2 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5900.5 +,25000,15.29,Typically Developing Children,Male,109,106,110,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8434.801 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7738.9 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4299.5 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,468.5 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,10.8 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1611001.0 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,169.0 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,215160.45 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,273972.9 +,25000,15.29,Typically Developing Children,Male,109,106,110,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,468.00003 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,755.5 +,25000,15.29,Typically Developing Children,Male,109,106,110,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1290.0 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1767.1 +,25000,15.29,Typically Developing Children,Male,109,106,110,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4028.4001 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3797.9 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62009.7 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13286.4 +,25000,15.29,Typically Developing Children,Male,109,106,110,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4033.2002 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4363.7 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,362.2 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3732.4 +,25000,15.29,Typically Developing Children,Male,109,106,110,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1860.0001 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1970.4 +,25000,15.29,Typically Developing Children,Male,109,106,110,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6207.6 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5752.6 +,25000,15.29,Typically Developing Children,Male,109,106,110,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8325.601 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8016.0 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3985.4 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,442.9 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.6 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62335.0 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1048579.4 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1056704.4 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1045996.0 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,433867.0 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,550473.44 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,736136.44 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8125.0 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1230.2 +,25000,15.29,Typically Developing Children,Male,109,106,110,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,205268.4 +,25000,15.29,Typically Developing Children,Male,109,106,110,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,611224.8 +,25000,15.29,Typically Developing Children,Male,109,106,110,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,25000,15.29,Typically Developing Children,Male,109,106,110,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,527443.25 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1006.7 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2105.5 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,25001,14.53,Typically Developing Children,Female,87,86,93,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1750141E7 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,936293.0 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,920324.0 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,920438.7 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17325.9 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,734.6 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,450.9 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,353.1 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,424.6 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,649.9 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1025.1 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1127778.2 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,153684.55 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,215609.61 +,25001,14.53,Typically Developing Children,Female,87,86,93,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,372.0 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,625.7 +,25001,14.53,Typically Developing Children,Female,87,86,93,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1033.2001 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1321.0 +,25001,14.53,Typically Developing Children,Female,87,86,93,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3340.8 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3171.2 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,47657.4 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13019.8 +,25001,14.53,Typically Developing Children,Female,87,86,93,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3450.0002 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3574.1 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,261.6 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4496.9 +,25001,14.53,Typically Developing Children,Female,87,86,93,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1800.0001 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1905.9 +,25001,14.53,Typically Developing Children,Female,87,86,93,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5847.6 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5755.5 +,25001,14.53,Typically Developing Children,Female,87,86,93,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7582.8003 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6611.3 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3715.6 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,429.3 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,47.8 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1304978.0 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,157.9 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,156203.58 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,217762.97 +,25001,14.53,Typically Developing Children,Female,87,86,93,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,259.2 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,594.3 +,25001,14.53,Typically Developing Children,Female,87,86,93,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1225.2001 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1394.3 +,25001,14.53,Typically Developing Children,Female,87,86,93,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2991.6 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3080.7 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,49170.7 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12882.8 +,25001,14.53,Typically Developing Children,Female,87,86,93,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3417.6 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3538.4 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,382.3 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6592.6 +,25001,14.53,Typically Developing Children,Female,87,86,93,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1646.4 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1719.6 +,25001,14.53,Typically Developing Children,Female,87,86,93,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6079.2 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5866.6 +,25001,14.53,Typically Developing Children,Female,87,86,93,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7293.6 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6461.0 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3735.0 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,475.9 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,26.5 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,54555.0 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,800109.7 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,812138.7 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,797621.0 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,309888.12 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,433372.6 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,585322.56 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12029.0 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,419.5 +,25001,14.53,Typically Developing Children,Female,87,86,93,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,154009.2 +,25001,14.53,Typically Developing Children,Female,87,86,93,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,451716.03 +,25001,14.53,Typically Developing Children,Female,87,86,93,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,25001,14.53,Typically Developing Children,Female,87,86,93,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,365755.22 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,961.6 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1363.2 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1746142E7 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1458728.0 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1386657.0 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1386526.9 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22586.0 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1119.1 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,382.8 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,402.2 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,482.8 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1014.5 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,2984.1 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1873297.6 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,280782.12 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,305346.84 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,660.0 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,838.5 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1042.8 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,2059.6 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4118.4004 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4551.8 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62000.4 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15438.2 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4191.6 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4028.0 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,851.4 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,37213.6 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1984.8 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2197.4 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5680.8003 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5565.9 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7474.8003 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8892.9 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4636.7 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,586.7 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,41.0 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1869484.0 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,181.9 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,275934.66 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,302358.28 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,536.4 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,647.1 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1335.6001 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2056.4 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4219.2 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4402.7 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62267.2 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15610.5 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3963.6 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4269.3 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,674.2 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,27239.1 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2085.6 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2055.4 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5473.2 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5490.6 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7572.0005 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8757.3 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4533.1 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,655.1 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,24.3 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66717.0 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1234743.9 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1301481.9 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1231163.0 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,556716.75 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,607705.1 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,799388.1 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,66738.0 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1536.8 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,226832.4 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,681429.6 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,25002,17.03,ADHD-Inattentive,Male,104,107,99,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,633818.44 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1009.8 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1519.0 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,25003,14.4,Typically Developing Children,Male,109,101,116,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1744782E7 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1271973.0 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1239797.0 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1240375.6 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21749.8 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,797.5 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,388.8 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,424.5 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,519.9 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1014.8 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,961.9 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1605013.0 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,229141.64 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,287056.4 +,25003,14.4,Typically Developing Children,Male,109,101,116,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,427.2 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,752.4 +,25003,14.4,Typically Developing Children,Male,109,101,116,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,852.00006 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1697.4 +,25003,14.4,Typically Developing Children,Male,109,101,116,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4588.8003 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4594.4 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60367.8 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15607.4 +,25003,14.4,Typically Developing Children,Male,109,101,116,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2994.0 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4485.6 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,478.5 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,16865.1 +,25003,14.4,Typically Developing Children,Male,109,101,116,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1833.6001 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2170.8 +,25003,14.4,Typically Developing Children,Male,109,101,116,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5510.4004 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5773.1 +,25003,14.4,Typically Developing Children,Male,109,101,116,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8623.2 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8096.3 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4344.5 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,736.8 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,23.0 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1665748.0 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,207.8 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,227318.64 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,279548.94 +,25003,14.4,Typically Developing Children,Male,109,101,116,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,498.00003 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,599.9 +,25003,14.4,Typically Developing Children,Male,109,101,116,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,945.60004 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1787.4 +,25003,14.4,Typically Developing Children,Male,109,101,116,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4513.2 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4549.5 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61478.2 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15102.9 +,25003,14.4,Typically Developing Children,Male,109,101,116,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3817.2002 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4678.2 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,401.6 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,9916.5 +,25003,14.4,Typically Developing Children,Male,109,101,116,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2041.2001 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2067.2 +,25003,14.4,Typically Developing Children,Male,109,101,116,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5828.4004 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5877.0 +,25003,14.4,Typically Developing Children,Male,109,101,116,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9225.601 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7586.8 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4365.7 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,804.5 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,27.0 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65301.0 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1090616.6 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1119505.6 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1087635.0 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,456460.28 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,566605.3 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,754165.3 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,28889.0 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1166.5 +,25003,14.4,Typically Developing Children,Male,109,101,116,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,200211.61 +,25003,14.4,Typically Developing Children,Male,109,101,116,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,569724.0 +,25003,14.4,Typically Developing Children,Male,109,101,116,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,25003,14.4,Typically Developing Children,Male,109,101,116,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,522328.8 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,972.4 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2056.9 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1742684E7 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1187950.0 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1177577.0 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1178087.2 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21956.4 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,729.8 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,555.3 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,431.3 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,506.7 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,827.9 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,926.3 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1497730.2 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,212356.89 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,267244.03 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,507.6 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,516.9 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1192.8 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1588.4 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4592.4004 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4114.9 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,66243.6 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15895.3 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4366.8003 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4066.0 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,293.1 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3002.1 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1914.0001 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2219.2 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5844.0 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5678.8 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8800.801 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7307.5 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4130.5 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,332.7 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,41.3 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1568936.0 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,180.5 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,212427.73 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,262812.53 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,585.60004 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,626.7 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1369.2001 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1745.5 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3926.4001 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3935.4 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,67098.3 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14186.8 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4196.4004 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4020.1 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,161.6 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3149.6 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1944.0001 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1955.3 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6025.2 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5718.3 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8530.801 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7003.3 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4281.6 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,293.9 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,30.0 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60352.0 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1017272.2 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1023944.2 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1014571.0 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,424784.62 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,530056.56 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,724042.56 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6672.0 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1442.9 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,212984.4 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,508032.03 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,25008,15.9,ADHD-Inattentive,Male,117,105,127,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,475873.22 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,763.1 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2426.7 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,25009,13.87,Typically Developing Children,Male,130,119,135,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1735266E7 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1436935.0 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1421882.0 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1422210.8 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,24960.5 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1217.6 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,779.3 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,825.0 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,843.0 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1245.1 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1127.5 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1788638.1 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,284826.75 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,313474.56 +,25009,13.87,Typically Developing Children,Male,130,119,135,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,848.4 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,843.2 +,25009,13.87,Typically Developing Children,Male,130,119,135,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1776.0001 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1963.1 +,25009,13.87,Typically Developing Children,Male,130,119,135,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,5006.4004 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4932.2 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,64354.2 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15509.0 +,25009,13.87,Typically Developing Children,Male,130,119,135,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3687.6 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4497.3 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,409.5 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4985.3 +,25009,13.87,Typically Developing Children,Male,130,119,135,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2072.4001 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2200.1 +,25009,13.87,Typically Developing Children,Male,130,119,135,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6388.8003 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5992.8 +,25009,13.87,Typically Developing Children,Male,130,119,135,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,10861.2 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9737.5 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4938.3 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,621.3 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,51.1 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1899257.0 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,143.9 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,279285.1 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,312141.3 +,25009,13.87,Typically Developing Children,Male,130,119,135,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,728.4 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,891.1 +,25009,13.87,Typically Developing Children,Male,130,119,135,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1483.2001 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2107.1 +,25009,13.87,Typically Developing Children,Male,130,119,135,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5299.2 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5110.3 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,66472.0 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15682.4 +,25009,13.87,Typically Developing Children,Male,130,119,135,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4470.0 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4547.6 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,226.6 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4820.3 +,25009,13.87,Typically Developing Children,Male,130,119,135,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2290.8 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2094.4 +,25009,13.87,Typically Developing Children,Male,130,119,135,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6055.2 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5769.9 +,25009,13.87,Typically Developing Children,Male,130,119,135,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,10246.801 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9160.4 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4909.7 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,581.5 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.0 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,71371.0 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1262917.8 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1273951.8 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1260694.0 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,564111.9 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,625615.9 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,827853.9 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11034.0 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1707.9 +,25009,13.87,Typically Developing Children,Male,130,119,135,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,249680.4 +,25009,13.87,Typically Developing Children,Male,130,119,135,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,626569.25 +,25009,13.87,Typically Developing Children,Male,130,119,135,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,25009,13.87,Typically Developing Children,Male,130,119,135,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,633645.6 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,659.7 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1339.3 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1741949E7 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1246934.0 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1224264.0 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1224617.2 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21380.8 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,936.8 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,448.2 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,467.4 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,560.2 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1030.2 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,850.8 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1529405.2 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,233231.3 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,284158.16 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,663.60004 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,555.5 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1288.8 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1668.3 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4891.2 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4972.9 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53201.8 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15651.0 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3724.8 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3669.6 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,364.7 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,10691.6 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2030.4 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2356.6 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5864.4004 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5524.8 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8649.601 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8462.8 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4034.7 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,578.9 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,55.9 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1646968.0 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,115.4 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,230546.0 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,274401.84 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,604.80005 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,646.8 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1447.2001 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1640.7 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4879.2 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4692.9 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54025.1 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15592.7 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3550.8 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3838.8 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,306.1 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7917.2 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2092.8 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1927.7 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6130.8003 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5596.9 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8713.2 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8058.1 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4179.1 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,557.8 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,30.6 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63253.0 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1088650.2 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1108698.2 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1085205.0 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,463777.28 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,558560.0 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,730220.0 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,20048.0 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,995.6 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,170134.81 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,579994.8 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,25012,15.04,ADHD-Inattentive,Female,90,88,95,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,536102.44 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,849.2 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1509.2 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,25013,13.64,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1743264E7 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1195275.0 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1179258.0 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1178801.1 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19478.5 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,792.8 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,499.0 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,432.7 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,563.9 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,829.2 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,605.1 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1592289.5 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,209778.23 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,277422.53 +,25013,13.64,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,619.2 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,712.0 +,25013,13.64,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1032.0 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1874.5 +,25013,13.64,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4089.6 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4101.6 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57217.5 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13253.3 +,25013,13.64,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3963.6 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4286.1 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,501.2 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6260.2 +,25013,13.64,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2090.4001 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2311.4 +,25013,13.64,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6487.2 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6074.4 +,25013,13.64,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8811.601 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8411.1 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4184.2 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,400.2 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,50.0 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1651519.0 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,213.4 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,209598.22 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,275568.16 +,25013,13.64,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,502.80002 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,695.2 +,25013,13.64,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1226.4 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1923.7 +,25013,13.64,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4428.0 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4199.9 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57672.7 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11760.3 +,25013,13.64,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3537.6 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4308.6 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,291.2 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6016.4 +,25013,13.64,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1975.2001 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2122.2 +,25013,13.64,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6126.0 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6147.1 +,25013,13.64,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8326.801 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8270.2 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4413.4 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,494.9 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,4.2 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66334.0 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1041169.1 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1054523.1 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1039005.0 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,419376.47 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,552990.7 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,735363.7 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13354.0 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2220.5 +,25013,13.64,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,238254.02 +,25013,13.64,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,621396.0 +,25013,13.64,Typically Developing Children,Male,113,109,114,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,25013,13.64,Typically Developing Children,Male,113,109,114,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,526749.6 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1168.0 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1060.0 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1748408E7 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1140548.0 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1121577.0 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1122142.8 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19521.4 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,690.3 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,565.2 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,398.1 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,459.0 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,971.0 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1368.8 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1469912.5 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,179718.25 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,271337.9 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,547.2 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,650.9 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1116.0 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1597.3 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3922.8 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3778.3 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,67596.2 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16151.9 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3344.4001 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3793.4 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,411.3 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7842.2 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1533.6001 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1986.5 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5143.2 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5696.4 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7735.2 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7541.8 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3731.1 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,495.2 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,73.7 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1548171.0 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,196.1 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,177759.53 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,268186.06 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,574.80005 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,656.3 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1256.4 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1600.3 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4006.8 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3777.1 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,68971.6 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14366.9 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3840.0002 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3837.5 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,382.0 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6282.8 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1720.8 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1643.6 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5527.2 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5446.0 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7803.6 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7305.1 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3792.6 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,570.7 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,30.9 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58190.0 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,957853.75 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,973405.75 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,954555.0 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,357477.78 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,539523.94 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,734712.94 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15552.0 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,781.3 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,174721.2 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,598586.44 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,25014,13.72,ADHD-Inattentive,Male,104,103,103,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,442993.22 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,980.6 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2210.4 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1489328E7 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1346337.0 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1335249.0 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1334134.1 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,23810.8 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,889.3 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,1088.1 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,1136.5 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,632.2 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1025.7 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,987.6 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1539813.1 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,247136.94 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,310550.25 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,402.0 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,474.1 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,871.75 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1735.1 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2873.5 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3772.0 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,64833.9 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15818.7 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2895.75 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4531.0 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,220.3 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3563.8 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1769.75 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2373.8 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5448.0 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6618.6 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7790.75 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8743.6 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4631.7 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,278.0 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1753250.0 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,172.2 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,243328.86 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,305635.03 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,420.5 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,618.8 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1985.5 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1995.1 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2659.5 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3724.5 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64897.3 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14445.4 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3341.5 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4749.1 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,313.6 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2756.6 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1674.0 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2324.0 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5141.75 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6718.7 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7733.25 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8377.2 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4791.3 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,340.0 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.7 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67478.0 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1177567.1 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1184480.1 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1175116.0 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,490465.78 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,616185.3 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,813686.3 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6913.0 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1551.7 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,205068.0 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,767381.5 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2524687,14.33,ADHD-Inattentive,Male,105,108,101,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,654445.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1256.7 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2597.3 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,http://purl.org/nidash/fsl#,Background (mm^3),,,9320385.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1210838.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1192881.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1193471.6 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21063.8 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,743.5 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,578.5 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,627.4 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,403.6 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,753.3 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1064.3 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1594981.8 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,215551.81 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,278751.72 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,663.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,607.3 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,887.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1763.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4233.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4247.2 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58943.2 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14998.3 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3983.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4174.8 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,429.9 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6056.3 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1979.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2206.9 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5446.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5867.2 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8284.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7772.6 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4383.3 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,351.4 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,44.7 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1635106.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,171.7 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,208630.55 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,279756.6 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,381.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,539.4 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,985.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2063.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4553.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4431.1 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59007.5 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13769.3 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4304.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4298.5 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,541.5 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5709.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1965.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2064.5 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5848.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5859.3 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7752.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8062.6 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4363.4 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,449.3 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,21.6 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63922.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1049125.6 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1062283.6 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1045952.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,424182.34 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,558508.3 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,741290.3 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13158.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,714.4 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,244799.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,690930.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2529026,13.33,ADHD-Inattentive,Male,103,86,117,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,568019.0 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,816.0 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2367.1 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2554127,9.02,Typically Developing Children,Male,120,121,138,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3052807E7 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1430404.0 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1417614.0 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1418941.0 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22501.1 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1002.2 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,676.6 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,542.0 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,529.3 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,993.8 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,751.3 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1637286.9 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,259462.2 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,335382.38 +,2554127,9.02,Typically Developing Children,Male,120,121,138,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,650.99225 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,913.4 +,2554127,9.02,Typically Developing Children,Male,120,121,138,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1198.9857 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1596.7 +,2554127,9.02,Typically Developing Children,Male,120,121,138,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4023.9521 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3683.1 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,65614.4 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16099.0 +,2554127,9.02,Typically Developing Children,Male,120,121,138,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4237.9497 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3914.5 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,458.4 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3689.4 +,2554127,9.02,Typically Developing Children,Male,120,121,138,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1917.9772 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1784.7 +,2554127,9.02,Typically Developing Children,Male,120,121,138,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5749.9316 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6023.7 +,2554127,9.02,Typically Developing Children,Male,120,121,138,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9763.884 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8284.6 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4389.7 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,502.1 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1788649.0 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,202.5 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,259705.67 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,340261.7 +,2554127,9.02,Typically Developing Children,Male,120,121,138,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,551.9934 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,759.4 +,2554127,9.02,Typically Developing Children,Male,120,121,138,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,921.989 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1848.7 +,2554127,9.02,Typically Developing Children,Male,120,121,138,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4281.9487 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4093.4 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,65055.9 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14745.1 +,2554127,9.02,Typically Developing Children,Male,120,121,138,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3972.9526 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3955.9 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,401.5 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4013.9 +,2554127,9.02,Typically Developing Children,Male,120,121,138,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1952.9767 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1652.4 +,2554127,9.02,Typically Developing Children,Male,120,121,138,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5605.933 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5639.7 +,2554127,9.02,Typically Developing Children,Male,120,121,138,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9404.888 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8197.4 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4106.4 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,439.2 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,24.4 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62755.0 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1259368.0 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1268382.0 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1256068.0 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,519167.88 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,675644.06 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,869743.06 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9014.0 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,962.0 +,2554127,9.02,Typically Developing Children,Male,120,121,138,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,218070.39 +,2554127,9.02,Typically Developing Children,Male,120,121,138,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,619823.6 +,2554127,9.02,Typically Developing Children,Male,120,121,138,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2554127,9.02,Typically Developing Children,Male,120,121,138,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,567249.25 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,633.8 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2571.0 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2558999,8.87,Typically Developing Children,Male,120,108,130,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1746814E7 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1288961.0 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1277924.0 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1278812.5 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21775.2 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,900.5 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,553.2 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,618.4 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,370.1 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,732.2 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,675.1 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1548014.0 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,225849.16 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,314413.3 +,2558999,8.87,Typically Developing Children,Male,120,108,130,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,282.00006 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,708.6 +,2558999,8.87,Typically Developing Children,Male,120,108,130,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,869.0002 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1876.5 +,2558999,8.87,Typically Developing Children,Male,120,108,130,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3591.001 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4054.8 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58251.3 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13335.1 +,2558999,8.87,Typically Developing Children,Male,120,108,130,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3331.0007 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3782.6 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,540.7 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2856.9 +,2558999,8.87,Typically Developing Children,Male,120,108,130,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2019.0005 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1965.6 +,2558999,8.87,Typically Developing Children,Male,120,108,130,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5524.0015 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6200.7 +,2558999,8.87,Typically Developing Children,Male,120,108,130,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9101.002 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7935.5 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4630.0 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,487.5 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,41.2 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1637093.0 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,139.8 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,221417.23 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,311263.8 +,2558999,8.87,Typically Developing Children,Male,120,108,130,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,427.0001 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,664.7 +,2558999,8.87,Typically Developing Children,Male,120,108,130,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,770.0002 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1869.3 +,2558999,8.87,Typically Developing Children,Male,120,108,130,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3908.001 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4147.0 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57544.9 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12536.3 +,2558999,8.87,Typically Developing Children,Male,120,108,130,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3643.001 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4136.8 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,515.1 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2834.6 +,2558999,8.87,Typically Developing Children,Male,120,108,130,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2068.0005 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2156.5 +,2558999,8.87,Typically Developing Children,Male,120,108,130,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5494.0015 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6374.1 +,2558999,8.87,Typically Developing Children,Male,120,108,130,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8642.002 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7343.1 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4502.3 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,343.4 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.0 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64437.0 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1139815.5 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1147001.5 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1136386.0 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,447266.4 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,625677.1 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,806868.1 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7186.0 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1095.5 +,2558999,8.87,Typically Developing Children,Male,120,108,130,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,148499.05 +,2558999,8.87,Typically Developing Children,Male,120,108,130,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,633799.1 +,2558999,8.87,Typically Developing Children,Male,120,108,130,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2558999,8.87,Typically Developing Children,Male,120,108,130,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,508711.12 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,922.3 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1602.3 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,http://purl.org/nidash/fsl#,Background (mm^3),,,9326586.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1252132.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1236193.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1237160.6 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19247.9 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,770.3 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,636.7 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,555.2 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,317.4 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,743.6 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,921.4 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1567932.4 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,218204.27 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,303394.44 +,2559537,11.17,Typically Developing Children,Male,130,123,130,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,630.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,652.2 +,2559537,11.17,Typically Developing Children,Male,130,123,130,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1040.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1542.5 +,2559537,11.17,Typically Developing Children,Male,130,123,130,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2254.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3774.6 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54248.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12168.9 +,2559537,11.17,Typically Developing Children,Male,130,123,130,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3805.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4041.4 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,429.3 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7139.9 +,2559537,11.17,Typically Developing Children,Male,130,123,130,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1713.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2461.9 +,2559537,11.17,Typically Developing Children,Male,130,123,130,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5395.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4820.2 +,2559537,11.17,Typically Developing Children,Male,130,123,130,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7817.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8314.6 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3863.5 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,431.2 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,12.6 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1626899.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,188.8 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,218475.75 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,306853.2 +,2559537,11.17,Typically Developing Children,Male,130,123,130,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,525.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,647.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1681.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1620.1 +,2559537,11.17,Typically Developing Children,Male,130,123,130,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2747.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3810.1 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,52679.2 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11531.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3772.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4193.2 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,355.5 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4109.3 +,2559537,11.17,Typically Developing Children,Male,130,123,130,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1697.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2272.1 +,2559537,11.17,Typically Developing Children,Male,130,123,130,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5572.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4790.8 +,2559537,11.17,Typically Developing Children,Male,130,123,130,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6414.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7783.1 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4134.4 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,477.8 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,3.1 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59942.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1108455.6 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1121004.6 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1105742.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,436680.03 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,610247.6 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,777476.6 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12549.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,427.9 +,2559537,11.17,Typically Developing Children,Male,130,123,130,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,191619.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,705464.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2559537,11.17,Typically Developing Children,Male,130,123,130,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,520194.0 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,897.5 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2521.0 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2570769,13.49,ADHD-Combined,Male,84,82,88,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1110422E7 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1308165.0 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1295092.0 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1295397.8 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,23349.9 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,813.7 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,504.7 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,642.8 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,462.8 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,808.7 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,804.7 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1706020.0 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,231867.48 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,300959.5 +,2570769,13.49,ADHD-Combined,Male,84,82,88,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,457.52063 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,721.2 +,2570769,13.49,ADHD-Combined,Male,84,82,88,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,779.3811 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1807.9 +,2570769,13.49,ADHD-Combined,Male,84,82,88,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2902.064 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3964.1 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,64345.3 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16660.5 +,2570769,13.49,ADHD-Combined,Male,84,82,88,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3422.0947 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4107.4 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,257.8 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4710.1 +,2570769,13.49,ADHD-Combined,Male,84,82,88,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1738.3124 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2352.0 +,2570769,13.49,ADHD-Combined,Male,84,82,88,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5544.778 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5948.5 +,2570769,13.49,ADHD-Combined,Male,84,82,88,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8174.1914 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8897.1 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4304.4 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,367.8 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,39.1 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1758725.0 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,170.6 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,231446.2 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,303680.6 +,2570769,13.49,ADHD-Combined,Male,84,82,88,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,376.3905 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,722.7 +,2570769,13.49,ADHD-Combined,Male,84,82,88,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,993.51135 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1988.1 +,2570769,13.49,ADHD-Combined,Male,84,82,88,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3307.7146 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4184.5 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64448.9 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15468.5 +,2570769,13.49,ADHD-Combined,Male,84,82,88,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3872.9653 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4488.0 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,444.2 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3365.5 +,2570769,13.49,ADHD-Combined,Male,84,82,88,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1896.5826 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2125.1 +,2570769,13.49,ADHD-Combined,Male,84,82,88,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5306.7075 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5914.6 +,2570769,13.49,ADHD-Combined,Male,84,82,88,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7670.1206 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8804.9 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4256.7 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,488.7 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,8.8 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66835.0 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1137499.8 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1146521.8 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1134353.0 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,463313.7 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,604640.06 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,800639.06 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9022.0 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1513.0 +,2570769,13.49,ADHD-Combined,Male,84,82,88,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,220262.94 +,2570769,13.49,ADHD-Combined,Male,84,82,88,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,796647.2 +,2570769,13.49,ADHD-Combined,Male,84,82,88,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2570769,13.49,ADHD-Combined,Male,84,82,88,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,558180.5 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,922.6 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1592.5 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2572285,8.33,Typically Developing Children,Male,106,119,96,http://purl.org/nidash/fsl#,Background (mm^3),,,1.2392478E7 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1531760.0 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1518072.0 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1519579.8 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21193.0 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1042.6 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,550.4 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,457.0 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,437.5 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,778.0 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,748.2 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1730639.9 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,259478.08 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,375478.56 +,2572285,8.33,Typically Developing Children,Male,106,119,96,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,668.0005 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,1143.7 +,2572285,8.33,Typically Developing Children,Male,106,119,96,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1028.0007 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1817.7 +,2572285,8.33,Typically Developing Children,Male,106,119,96,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4580.0034 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4123.3 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,66287.1 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14854.0 +,2572285,8.33,Typically Developing Children,Male,106,119,96,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4227.003 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4151.3 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,325.3 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4277.7 +,2572285,8.33,Typically Developing Children,Male,106,119,96,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2303.0017 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1963.0 +,2572285,8.33,Typically Developing Children,Male,106,119,96,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,7340.0054 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,7659.8 +,2572285,8.33,Typically Developing Children,Male,106,119,96,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,10216.007 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8836.3 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4303.5 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,646.5 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,31.4 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1878189.0 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,170.6 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,261493.78 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,391161.28 +,2572285,8.33,Typically Developing Children,Male,106,119,96,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,395.00027 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,978.5 +,2572285,8.33,Typically Developing Children,Male,106,119,96,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,690.0005 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2170.8 +,2572285,8.33,Typically Developing Children,Male,106,119,96,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4509.0034 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4444.4 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64279.5 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14162.7 +,2572285,8.33,Typically Developing Children,Male,106,119,96,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3991.003 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4276.5 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,241.0 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4869.0 +,2572285,8.33,Typically Developing Children,Male,106,119,96,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2253.0017 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1870.6 +,2572285,8.33,Typically Developing Children,Male,106,119,96,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,7314.0054 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,7253.7 +,2572285,8.33,Typically Developing Children,Male,106,119,96,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9857.007 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8901.6 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4177.0 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,606.8 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,20.8 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,70198.0 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1362483.8 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1373055.8 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1356180.0 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,520971.88 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,766639.8 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,970732.8 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10572.0 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1643.0 +,2572285,8.33,Typically Developing Children,Male,106,119,96,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,174671.12 +,2572285,8.33,Typically Developing Children,Male,106,119,96,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,767080.56 +,2572285,8.33,Typically Developing Children,Male,106,119,96,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2572285,8.33,Typically Developing Children,Male,106,119,96,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,578839.44 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1147.8 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2354.1 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,http://purl.org/nidash/fsl#,Background (mm^3),,,9321312.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1274828.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1256731.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1257075.6 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20461.7 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,690.5 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,685.1 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,602.5 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,427.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,759.8 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,880.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1603461.2 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,228774.7 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,297090.12 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,493.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,796.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,871.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1866.6 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3873.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3762.6 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55696.1 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12118.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3743.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4126.2 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,357.2 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7746.7 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2050.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2257.3 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6114.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6509.2 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7640.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8552.3 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4567.6 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,501.2 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,29.8 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1692880.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,147.6 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,230883.92 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,296881.94 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,323.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,680.1 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1397.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1901.4 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3885.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3838.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57079.5 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11458.7 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4336.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4589.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,535.7 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4495.2 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2088.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2105.1 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6511.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6623.4 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7012.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8171.5 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4516.2 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,647.9 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,46.9 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66325.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1123263.6 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1137059.6 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1119528.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,459658.62 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,593972.06 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,774519.06 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13796.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1344.9 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,214977.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,672412.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2601519,13.83,ADHD-Inattentive,Male,109,92,123,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,557464.0 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,840.9 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1828.0 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2601925,9.58,Typically Developing Children,Male,99,106,100,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3056583E7 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1217230.0 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1202935.0 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1203358.2 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20131.2 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,936.4 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,483.2 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,560.9 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,468.7 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,829.9 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,887.7 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1545491.2 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,222542.52 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,282146.3 +,2601925,9.58,Typically Developing Children,Male,99,106,100,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,679.9961 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,799.5 +,2601925,9.58,Typically Developing Children,Male,99,106,100,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,929.9946 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1819.4 +,2601925,9.58,Typically Developing Children,Male,99,106,100,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3894.9775 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3785.8 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56730.1 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13213.6 +,2601925,9.58,Typically Developing Children,Male,99,106,100,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3808.978 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4065.8 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,420.1 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4830.4 +,2601925,9.58,Typically Developing Children,Male,99,106,100,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1792.9896 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1981.9 +,2601925,9.58,Typically Developing Children,Male,99,106,100,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5599.968 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5918.1 +,2601925,9.58,Typically Developing Children,Male,99,106,100,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8582.95 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7616.2 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3716.7 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,417.4 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,37.1 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1581750.0 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,234.8 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,220355.02 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,279573.47 +,2601925,9.58,Typically Developing Children,Male,99,106,100,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,560.99677 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,681.5 +,2601925,9.58,Typically Developing Children,Male,99,106,100,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,858.99506 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1927.3 +,2601925,9.58,Typically Developing Children,Male,99,106,100,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4013.9768 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4042.3 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55143.6 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13025.3 +,2601925,9.58,Typically Developing Children,Male,99,106,100,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4096.976 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3974.1 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,705.6 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4743.3 +,2601925,9.58,Typically Developing Children,Male,99,106,100,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1855.9893 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1798.5 +,2601925,9.58,Typically Developing Children,Male,99,106,100,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5431.9688 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5546.8 +,2601925,9.58,Typically Developing Children,Male,99,106,100,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8432.951 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7550.2 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3969.2 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,420.6 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,31.4 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61089.0 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1067185.2 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1078046.2 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1065139.0 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,442897.53 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,561719.75 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,735173.75 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10861.0 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1135.0 +,2601925,9.58,Typically Developing Children,Male,99,106,100,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,213925.77 +,2601925,9.58,Typically Developing Children,Male,99,106,100,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,531582.94 +,2601925,9.58,Typically Developing Children,Male,99,106,100,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2601925,9.58,Typically Developing Children,Male,99,106,100,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,480983.25 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,555.5 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1361.8 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2618929,10.09,Typically Developing Children,Male,96,100,104,http://purl.org/nidash/fsl#,Background (mm^3),,,1.305617E7 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1309815.0 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1299456.0 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1300268.4 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20696.7 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,652.1 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,370.5 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,460.6 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,437.9 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,641.9 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,643.4 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1588766.1 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,209078.64 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,326856.88 +,2618929,10.09,Typically Developing Children,Male,96,100,104,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,636.0016 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,773.0 +,2618929,10.09,Typically Developing Children,Male,96,100,104,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,790.00195 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1677.0 +,2618929,10.09,Typically Developing Children,Male,96,100,104,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4298.0107 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4063.3 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,65177.4 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13917.1 +,2618929,10.09,Typically Developing Children,Male,96,100,104,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3892.0098 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4556.0 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,282.3 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3128.3 +,2618929,10.09,Typically Developing Children,Male,96,100,104,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1617.004 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2036.7 +,2618929,10.09,Typically Developing Children,Male,96,100,104,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5911.0146 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5850.1 +,2618929,10.09,Typically Developing Children,Male,96,100,104,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8322.0205 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8221.7 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3865.6 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,385.2 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,18.2 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1674531.0 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,152.7 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,210162.28 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,332378.62 +,2618929,10.09,Typically Developing Children,Male,96,100,104,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,527.00134 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,648.8 +,2618929,10.09,Typically Developing Children,Male,96,100,104,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1335.0033 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1910.1 +,2618929,10.09,Typically Developing Children,Male,96,100,104,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4263.0107 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4298.5 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,65738.7 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13855.7 +,2618929,10.09,Typically Developing Children,Male,96,100,104,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4390.011 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4259.8 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,297.1 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3717.9 +,2618929,10.09,Typically Developing Children,Male,96,100,104,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1843.0046 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1787.2 +,2618929,10.09,Typically Developing Children,Male,96,100,104,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5439.0137 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5734.9 +,2618929,10.09,Typically Developing Children,Male,96,100,104,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7800.0195 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7849.1 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3856.6 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,532.2 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,27.7 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63425.0 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1143408.4 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1151379.4 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1140965.0 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,419240.9 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,659235.5 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,854016.5 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7971.0 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,754.1 +,2618929,10.09,Typically Developing Children,Male,96,100,104,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,219925.56 +,2618929,10.09,Typically Developing Children,Male,96,100,104,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,689474.7 +,2618929,10.09,Typically Developing Children,Male,96,100,104,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2618929,10.09,Typically Developing Children,Male,96,100,104,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,492815.25 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,695.2 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1777.8 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2621228,8.98,Typically Developing Children,Female,116,110,112,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3065607E7 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1015405.0 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1000612.0 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1001329.75 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16621.5 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,884.1 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,355.7 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,421.0 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,405.5 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,701.3 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,528.2 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1201042.5 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,169095.28 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,249816.97 +,2621228,8.98,Typically Developing Children,Female,116,110,112,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,487.9982 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,590.5 +,2621228,8.98,Typically Developing Children,Female,116,110,112,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,792.9971 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1448.7 +,2621228,8.98,Typically Developing Children,Female,116,110,112,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3296.9878 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3323.8 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,49427.6 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10303.7 +,2621228,8.98,Typically Developing Children,Female,116,110,112,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3039.9888 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3402.6 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,371.3 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5384.6 +,2621228,8.98,Typically Developing Children,Female,116,110,112,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1493.9945 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1548.7 +,2621228,8.98,Typically Developing Children,Female,116,110,112,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4549.9834 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4775.7 +,2621228,8.98,Typically Developing Children,Female,116,110,112,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6992.974 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6720.7 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3425.6 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,370.9 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.3 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1290969.0 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,155.9 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,169751.39 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,247459.1 +,2621228,8.98,Typically Developing Children,Female,116,110,112,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,389.99857 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,610.2 +,2621228,8.98,Typically Developing Children,Female,116,110,112,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1294.9952 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1481.0 +,2621228,8.98,Typically Developing Children,Female,116,110,112,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3662.9866 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3524.3 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,45723.2 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,9542.6 +,2621228,8.98,Typically Developing Children,Female,116,110,112,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2829.9895 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3219.6 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,285.1 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5496.8 +,2621228,8.98,Typically Developing Children,Female,116,110,112,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1575.9941 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1391.0 +,2621228,8.98,Typically Developing Children,Female,116,110,112,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4681.983 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4578.0 +,2621228,8.98,Typically Developing Children,Female,116,110,112,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6453.976 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6088.5 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3430.1 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,360.8 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,17.3 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,51083.0 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,888228.75 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,900210.75 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,886356.0 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,338846.7 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,497276.06 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,643577.06 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11982.0 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,844.9 +,2621228,8.98,Typically Developing Children,Female,116,110,112,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,189671.3 +,2621228,8.98,Typically Developing Children,Female,116,110,112,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,533380.0 +,2621228,8.98,Typically Developing Children,Female,116,110,112,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2621228,8.98,Typically Developing Children,Female,116,110,112,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,404058.5 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,655.8 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2407.4 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2640795,12.47,Typically Developing Children,Male,119,108,136,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3059E7 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1150539.0 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1133162.0 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1134136.5 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19036.2 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1018.3 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,633.2 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,572.1 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,570.4 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,862.0 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,727.3 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1479165.6 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,190472.62 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,276904.4 +,2640795,12.47,Typically Developing Children,Male,119,108,136,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,624.9997 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,737.0 +,2640795,12.47,Typically Developing Children,Male,119,108,136,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,879.9995 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1415.3 +,2640795,12.47,Typically Developing Children,Male,119,108,136,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4009.9978 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4246.2 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57134.3 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11729.2 +,2640795,12.47,Typically Developing Children,Male,119,108,136,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3313.9983 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3597.1 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,408.8 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6246.8 +,2640795,12.47,Typically Developing Children,Male,119,108,136,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1890.999 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2018.2 +,2640795,12.47,Typically Developing Children,Male,119,108,136,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5198.997 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5684.2 +,2640795,12.47,Typically Developing Children,Male,119,108,136,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7819.9956 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7561.0 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4020.4 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,479.2 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,10.1 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1523121.0 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,125.7 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,191110.77 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,278026.72 +,2640795,12.47,Typically Developing Children,Male,119,108,136,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,502.99973 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,551.4 +,2640795,12.47,Typically Developing Children,Male,119,108,136,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1235.9994 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1611.0 +,2640795,12.47,Typically Developing Children,Male,119,108,136,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4293.9976 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4464.7 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56888.6 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11225.6 +,2640795,12.47,Typically Developing Children,Male,119,108,136,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3398.9983 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3839.5 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,462.7 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5875.7 +,2640795,12.47,Typically Developing Children,Male,119,108,136,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1832.999 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1910.6 +,2640795,12.47,Typically Developing Children,Male,119,108,136,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5252.997 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5508.2 +,2640795,12.47,Typically Developing Children,Male,119,108,136,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7935.9956 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7338.1 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3721.2 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,614.1 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,29.9 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60334.0 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,999196.56 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1012936.56 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,995771.0 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,381583.4 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,554931.1 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,730377.1 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13740.0 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,627.0 +,2640795,12.47,Typically Developing Children,Male,119,108,136,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,178513.89 +,2640795,12.47,Typically Developing Children,Male,119,108,136,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,657523.7 +,2640795,12.47,Typically Developing Children,Male,119,108,136,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2640795,12.47,Typically Developing Children,Male,119,108,136,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,454211.75 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1034.4 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1365.5 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2641332,10.38,Typically Developing Children,Female,95,92,114,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3058572E7 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1134133.0 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1121712.0 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1122430.6 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19515.6 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,640.8 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,535.7 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,409.8 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,465.2 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,846.9 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,993.7 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1374000.2 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,190484.88 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,267374.28 +,2641332,10.38,Typically Developing Children,Female,95,92,114,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,421.00107 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,681.0 +,2641332,10.38,Typically Developing Children,Female,95,92,114,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1270.0032 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1476.7 +,2641332,10.38,Typically Developing Children,Female,95,92,114,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3261.008 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3085.7 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57640.7 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13631.4 +,2641332,10.38,Typically Developing Children,Female,95,92,114,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3259.008 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3505.5 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,154.5 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3987.0 +,2641332,10.38,Typically Developing Children,Female,95,92,114,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1730.0043 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1664.7 +,2641332,10.38,Typically Developing Children,Female,95,92,114,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5610.014 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5844.1 +,2641332,10.38,Typically Developing Children,Female,95,92,114,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8607.021 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8073.5 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3540.9 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,411.7 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,21.2 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1492659.0 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,178.3 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,193302.17 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,273614.3 +,2641332,10.38,Typically Developing Children,Female,95,92,114,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,191.00047 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,592.5 +,2641332,10.38,Typically Developing Children,Female,95,92,114,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1312.0033 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1623.4 +,2641332,10.38,Typically Developing Children,Female,95,92,114,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3877.0098 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3615.3 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56515.7 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12789.3 +,2641332,10.38,Typically Developing Children,Female,95,92,114,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3583.009 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3508.0 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,649.1 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3931.7 +,2641332,10.38,Typically Developing Children,Female,95,92,114,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1595.004 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1488.8 +,2641332,10.38,Typically Developing Children,Female,95,92,114,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5376.0137 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5703.5 +,2641332,10.38,Typically Developing Children,Female,95,92,114,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8569.021 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7948.4 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3571.6 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,466.2 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,20.1 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57648.0 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,983869.6 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,993029.6 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,981608.0 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,383787.06 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,540988.6 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,713001.6 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9160.0 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,706.8 +,2641332,10.38,Typically Developing Children,Female,95,92,114,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,206101.52 +,2641332,10.38,Typically Developing Children,Female,95,92,114,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,531768.3 +,2641332,10.38,Typically Developing Children,Female,95,92,114,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2641332,10.38,Typically Developing Children,Female,95,92,114,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,430866.1 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,791.1 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1468.1 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,http://purl.org/nidash/fsl#,Background (mm^3),,,9323543.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1130849.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1121306.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1121958.9 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19066.2 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,704.1 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,740.1 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,685.7 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,542.6 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,989.9 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,780.8 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1354938.6 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,221864.48 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,255144.48 +,2659769,14.25,Typically Developing Children,Male,124,111,132,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,423.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,486.2 +,2659769,14.25,Typically Developing Children,Male,124,111,132,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1072.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1530.1 +,2659769,14.25,Typically Developing Children,Male,124,111,132,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3476.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3796.3 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,46238.6 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11673.8 +,2659769,14.25,Typically Developing Children,Male,124,111,132,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3829.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3705.4 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,239.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2792.2 +,2659769,14.25,Typically Developing Children,Male,124,111,132,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1746.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1952.1 +,2659769,14.25,Typically Developing Children,Male,124,111,132,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5395.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5678.2 +,2659769,14.25,Typically Developing Children,Male,124,111,132,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7900.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7987.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3975.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,369.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,28.5 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1509133.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,233.2 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,218634.14 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,252154.75 +,2659769,14.25,Typically Developing Children,Male,124,111,132,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,376.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,544.8 +,2659769,14.25,Typically Developing Children,Male,124,111,132,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1147.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1317.7 +,2659769,14.25,Typically Developing Children,Male,124,111,132,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4021.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3908.6 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,46423.3 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11168.1 +,2659769,14.25,Typically Developing Children,Male,124,111,132,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3982.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3888.6 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,201.2 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2965.2 +,2659769,14.25,Typically Developing Children,Male,124,111,132,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1855.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1919.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5396.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5552.2 +,2659769,14.25,Typically Developing Children,Male,124,111,132,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7487.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7446.9 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4215.4 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,474.4 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,30.1 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59042.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1008492.9 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1015115.9 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1006006.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,440498.62 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,507299.25 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,659358.25 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6623.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,957.4 +,2659769,14.25,Typically Developing Children,Male,124,111,132,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,232458.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,623126.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2659769,14.25,Typically Developing Children,Male,124,111,132,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,537654.0 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,920.4 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1043.2 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2682736,10.78,ADHD-Combined,Male,107,107,106,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1107778E7 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1280560.0 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1270376.0 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1270376.9 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17525.8 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1028.8 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,762.2 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,799.6 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,518.4 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,829.1 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,866.9 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1559267.6 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,231861.47 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,299685.9 +,2682736,10.78,ADHD-Combined,Male,107,107,106,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,629.0909 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,778.8 +,2682736,10.78,ADHD-Combined,Male,107,107,106,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,764.75104 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1464.2 +,2682736,10.78,ADHD-Combined,Male,107,107,106,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4009.9556 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3867.5 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63320.0 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13259.7 +,2682736,10.78,ADHD-Combined,Male,107,107,106,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3334.3147 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3687.5 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,289.1 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3411.8 +,2682736,10.78,ADHD-Combined,Male,107,107,106,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1835.4026 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2153.8 +,2682736,10.78,ADHD-Combined,Male,107,107,106,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5746.938 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5787.5 +,2682736,10.78,ADHD-Combined,Male,107,107,106,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8393.642 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7967.9 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3977.4 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,405.0 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,15.6 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1682898.0 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,146.4 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,230170.95 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,299006.6 +,2682736,10.78,ADHD-Combined,Male,107,107,106,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,577.2208 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,802.5 +,2682736,10.78,ADHD-Combined,Male,107,107,106,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,662.34094 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1602.7 +,2682736,10.78,ADHD-Combined,Male,107,107,106,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4164.236 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4157.4 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58536.8 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12853.0 +,2682736,10.78,ADHD-Combined,Male,107,107,106,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3535.1448 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3492.4 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,220.5 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3498.5 +,2682736,10.78,ADHD-Combined,Male,107,107,106,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1778.2124 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2141.9 +,2682736,10.78,ADHD-Combined,Male,107,107,106,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5707.038 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5659.1 +,2682736,10.78,ADHD-Combined,Male,107,107,106,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7948.091 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7773.6 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3890.1 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,468.2 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,2.5 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61323.0 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1125628.9 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1133278.9 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1121920.0 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,462032.4 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,598692.5 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,782870.5 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7650.0 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1258.1 +,2682736,10.78,ADHD-Combined,Male,107,107,106,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,170750.95 +,2682736,10.78,ADHD-Combined,Male,107,107,106,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,758163.56 +,2682736,10.78,ADHD-Combined,Male,107,107,106,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2682736,10.78,ADHD-Combined,Male,107,107,106,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,511925.7 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1360.8 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1491.3 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2703289,11.1,Typically Developing Children,Male,109,117,124,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3055806E7 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1273749.0 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1258492.0 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1259081.9 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22218.5 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,637.2 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,404.4 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,431.5 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,445.3 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,757.9 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,731.3 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1618628.4 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,204070.52 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,304167.22 +,2703289,11.1,Typically Developing Children,Male,109,117,124,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,580.999 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,762.6 +,2703289,11.1,Typically Developing Children,Male,109,117,124,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1552.9973 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1625.1 +,2703289,11.1,Typically Developing Children,Male,109,117,124,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4220.9927 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4044.8 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,71859.7 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16067.1 +,2703289,11.1,Typically Developing Children,Male,109,117,124,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3875.9934 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3923.1 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,382.9 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5116.7 +,2703289,11.1,Typically Developing Children,Male,109,117,124,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1802.9968 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1926.8 +,2703289,11.1,Typically Developing Children,Male,109,117,124,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5651.99 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5655.7 +,2703289,11.1,Typically Developing Children,Male,109,117,124,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8097.986 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7419.6 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4310.6 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,407.0 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,86.0 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1664945.0 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,236.7 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,207661.17 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,305015.94 +,2703289,11.1,Typically Developing Children,Male,109,117,124,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,498.99915 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,695.6 +,2703289,11.1,Typically Developing Children,Male,109,117,124,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1591.9972 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1913.1 +,2703289,11.1,Typically Developing Children,Male,109,117,124,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4497.992 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4278.0 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,71947.8 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15458.5 +,2703289,11.1,Typically Developing Children,Male,109,117,124,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3922.9932 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3905.9 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,395.2 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5417.9 +,2703289,11.1,Typically Developing Children,Male,109,117,124,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1799.997 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1674.9 +,2703289,11.1,Typically Developing Children,Male,109,117,124,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5488.9907 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5559.7 +,2703289,11.1,Typically Developing Children,Male,109,117,124,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7785.9863 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7685.2 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4479.5 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,504.2 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,23.9 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61782.0 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1085478.9 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1097232.9 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1081998.0 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,411731.7 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,609183.2 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,816668.2 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11754.0 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,871.0 +,2703289,11.1,Typically Developing Children,Male,109,117,124,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,233567.61 +,2703289,11.1,Typically Developing Children,Male,109,117,124,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,689688.75 +,2703289,11.1,Typically Developing Children,Male,109,117,124,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2703289,11.1,Typically Developing Children,Male,109,117,124,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,499445.12 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1011.4 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1904.1 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2730704,10.21,Typically Developing Children,Female,94,83,107,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1115553E7 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1036738.0 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1018687.0 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1018473.56 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16816.8 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,879.1 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,294.4 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,341.1 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,542.8 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,511.9 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1010.5 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1264115.4 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,163221.94 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,247701.27 +,2730704,10.21,Typically Developing Children,Female,94,83,107,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,571.90076 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,657.3 +,2730704,10.21,Typically Developing Children,Female,94,83,107,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,602.49084 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1198.2 +,2730704,10.21,Typically Developing Children,Female,94,83,107,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3524.505 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3714.3 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59009.9 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12487.3 +,2730704,10.21,Typically Developing Children,Female,94,83,107,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2993.8342 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3029.3 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,543.8 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6451.2 +,2730704,10.21,Typically Developing Children,Female,94,83,107,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1428.422 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1707.9 +,2730704,10.21,Typically Developing Children,Female,94,83,107,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4559.246 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4935.8 +,2730704,10.21,Typically Developing Children,Female,94,83,107,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7292.4 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6710.4 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3531.1 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,416.6 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,23.7 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1376721.0 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,174.6 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,165655.38 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,247578.02 +,2730704,10.21,Typically Developing Children,Female,94,83,107,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,379.05054 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,538.2 +,2730704,10.21,Typically Developing Children,Female,94,83,107,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,518.7007 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1459.1 +,2730704,10.21,Typically Developing Children,Female,94,83,107,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3629.575 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3729.9 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58161.1 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11801.0 +,2730704,10.21,Typically Developing Children,Female,94,83,107,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2928.664 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3137.6 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,451.3 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6716.8 +,2730704,10.21,Typically Developing Children,Female,94,83,107,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1500.2421 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1369.3 +,2730704,10.21,Typically Developing Children,Female,94,83,107,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4563.2363 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5020.6 +,2730704,10.21,Typically Developing Children,Female,94,83,107,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6818.9194 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6663.5 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3622.5 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,419.2 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.2 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,53056.0 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,879718.56 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,894060.56 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,877293.0 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,328877.3 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,495279.28 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,665879.25 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14342.0 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,760.4 +,2730704,10.21,Typically Developing Children,Female,94,83,107,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,150636.0 +,2730704,10.21,Typically Developing Children,Female,94,83,107,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,634909.6 +,2730704,10.21,Typically Developing Children,Female,94,83,107,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2730704,10.21,Typically Developing Children,Female,94,83,107,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,405770.25 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,787.0 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1846.0 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2735617,11.42,Typically Developing Children,Male,127,126,122,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1106711E7 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1217331.0 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1200671.0 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1200276.0 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21383.0 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1046.2 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,553.0 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,547.0 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,511.5 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,735.8 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,632.4 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1451954.0 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,205422.23 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,289781.06 +,2735617,11.42,Typically Developing Children,Male,127,126,122,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,706.2269 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,839.7 +,2735617,11.42,Typically Developing Children,Male,127,126,122,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,900.40607 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1570.2 +,2735617,11.42,Typically Developing Children,Male,127,126,122,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3528.4746 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3582.1 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60067.6 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14188.7 +,2735617,11.42,Typically Developing Children,Male,127,126,122,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3259.8157 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3524.5 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,284.4 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6415.2 +,2735617,11.42,Typically Developing Children,Male,127,126,122,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2050.851 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2106.1 +,2735617,11.42,Typically Developing Children,Male,127,126,122,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5842.6646 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6023.5 +,2735617,11.42,Typically Developing Children,Male,127,126,122,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8821.852 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8217.3 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4472.3 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,350.1 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,8.4 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1592314.0 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,114.2 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,207068.42 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,289491.28 +,2735617,11.42,Typically Developing Children,Male,127,126,122,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,500.07782 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,793.9 +,2735617,11.42,Typically Developing Children,Male,127,126,122,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,649.0372 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1719.6 +,2735617,11.42,Typically Developing Children,Male,127,126,122,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3701.3738 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3692.0 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58908.7 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13651.0 +,2735617,11.42,Typically Developing Children,Male,127,126,122,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3493.8948 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3542.0 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,288.6 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6433.0 +,2735617,11.42,Typically Developing Children,Male,127,126,122,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1994.9913 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1953.7 +,2735617,11.42,Typically Developing Children,Male,127,126,122,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6227.0327 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5844.0 +,2735617,11.42,Typically Developing Children,Male,127,126,122,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8412.213 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8141.3 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4354.5 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,456.6 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,7.0 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62576.0 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1056784.0 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1070440.0 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1054641.0 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,412490.66 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,579272.3 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,760778.3 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13656.0 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1237.4 +,2735617,11.42,Typically Developing Children,Male,127,126,122,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,143000.97 +,2735617,11.42,Typically Developing Children,Male,127,126,122,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,750040.94 +,2735617,11.42,Typically Developing Children,Male,127,126,122,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2735617,11.42,Typically Developing Children,Male,127,126,122,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,498525.72 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,896.6 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1922.8 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,http://purl.org/nidash/fsl#,Background (mm^3),,,9320788.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1439821.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1423439.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1424278.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22560.3 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,849.9 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,1137.4 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,1097.9 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,810.4 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1036.8 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,754.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1861076.1 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,268166.72 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,322490.28 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,406.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,717.2 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1237.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1736.6 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3838.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3895.1 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,66421.6 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,17128.7 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2873.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4010.2 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,318.1 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6328.9 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2048.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2536.6 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5483.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5848.9 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8612.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9146.2 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4942.6 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,301.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1853568.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,188.9 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,267428.8 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,330807.2 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,579.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,660.7 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1602.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2128.8 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4430.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4339.8 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,66976.5 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15441.5 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4200.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4521.3 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,508.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5259.5 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1898.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2433.4 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5581.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5858.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8073.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9071.2 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4819.9 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,659.7 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.5 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68105.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1261354.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1274312.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1256033.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,535595.56 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,653297.44 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,856810.44 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12958.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1588.8 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,194841.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,755483.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2737106,14.17,ADHD-Inattentive,Male,95,83,105,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,633874.0 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1052.4 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2565.0 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2740232,11.09,Typically Developing Children,Male,85,102,99,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3053976E7 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1371170.0 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1354928.0 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1355775.1 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21516.6 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,630.5 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,453.6 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,448.1 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,440.2 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,647.9 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,790.2 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1604336.4 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,249210.72 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,326842.66 +,2740232,11.09,Typically Developing Children,Male,85,102,99,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,543.00134 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,819.6 +,2740232,11.09,Typically Developing Children,Male,85,102,99,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,997.0025 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1873.5 +,2740232,11.09,Typically Developing Children,Male,85,102,99,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3063.0076 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3730.2 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57087.5 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12887.5 +,2740232,11.09,Typically Developing Children,Male,85,102,99,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,5083.0127 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4749.9 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,430.3 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4238.1 +,2740232,11.09,Typically Developing Children,Male,85,102,99,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1932.0049 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2042.0 +,2740232,11.09,Typically Developing Children,Male,85,102,99,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6221.0156 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6474.8 +,2740232,11.09,Typically Developing Children,Male,85,102,99,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9103.022 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8360.2 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4297.0 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,434.7 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,68.7 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1745523.0 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,224.6 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,246381.42 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,326388.34 +,2740232,11.09,Typically Developing Children,Male,85,102,99,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,354.0009 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,711.8 +,2740232,11.09,Typically Developing Children,Male,85,102,99,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1241.003 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1895.8 +,2740232,11.09,Typically Developing Children,Male,85,102,99,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3696.0093 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4293.6 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57719.3 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11909.6 +,2740232,11.09,Typically Developing Children,Male,85,102,99,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4459.011 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,5093.1 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,595.0 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5711.9 +,2740232,11.09,Typically Developing Children,Male,85,102,99,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1772.0044 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1772.6 +,2740232,11.09,Typically Developing Children,Male,85,102,99,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6357.016 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6395.7 +,2740232,11.09,Typically Developing Children,Male,85,102,99,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8436.021 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8664.3 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4704.4 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,554.4 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,84.1 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67346.0 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1218280.1 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1230001.1 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1215291.0 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,495592.12 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,653231.0 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,836336.0 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11721.0 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,967.1 +,2740232,11.09,Typically Developing Children,Male,85,102,99,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,216569.55 +,2740232,11.09,Typically Developing Children,Male,85,102,99,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,647992.56 +,2740232,11.09,Typically Developing Children,Male,85,102,99,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2740232,11.09,Typically Developing Children,Male,85,102,99,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,547822.4 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,815.0 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1525.3 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2741068,8.53,ADHD-Combined,Male,114,107,118,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1107078E7 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1280178.0 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1266504.0 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1265731.4 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16647.9 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,973.5 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,668.7 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,674.8 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,612.1 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,896.0 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1015.0 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1504521.2 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,210016.72 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,316650.47 +,2741068,8.53,ADHD-Combined,Male,114,107,118,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,514.7107 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,761.8 +,2741068,8.53,ADHD-Combined,Male,114,107,118,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1042.7214 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1383.7 +,2741068,8.53,ADHD-Combined,Male,114,107,118,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4520.6763 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4038.9 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,64200.1 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16087.5 +,2741068,8.53,ADHD-Combined,Male,114,107,118,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3803.8052 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3954.1 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,351.8 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5159.4 +,2741068,8.53,ADHD-Combined,Male,114,107,118,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1520.1921 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2016.5 +,2741068,8.53,ADHD-Combined,Male,114,107,118,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5297.3975 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4510.2 +,2741068,8.53,ADHD-Combined,Male,114,107,118,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8089.0713 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7079.7 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3680.3 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,532.1 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1698233.0 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,116.5 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,208729.38 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,314192.88 +,2741068,8.53,ADHD-Combined,Male,114,107,118,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,501.4107 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,643.9 +,2741068,8.53,ADHD-Combined,Male,114,107,118,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,856.5212 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1774.7 +,2741068,8.53,ADHD-Combined,Male,114,107,118,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4887.757 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4490.8 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64263.1 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13882.2 +,2741068,8.53,ADHD-Combined,Male,114,107,118,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3789.1753 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4008.4 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,284.9 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4363.7 +,2741068,8.53,ADHD-Combined,Male,114,107,118,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1790.1825 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1670.7 +,2741068,8.53,ADHD-Combined,Male,114,107,118,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5274.787 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4889.2 +,2741068,8.53,ADHD-Combined,Male,114,107,118,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7897.551 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6776.5 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4076.8 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,507.4 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57479.0 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1111152.4 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1121667.4 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1107709.0 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,418746.1 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,630843.4 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,817781.4 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10515.0 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2235.3 +,2741068,8.53,ADHD-Combined,Male,114,107,118,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,163741.84 +,2741068,8.53,ADHD-Combined,Male,114,107,118,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,770830.5 +,2741068,8.53,ADHD-Combined,Male,114,107,118,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2741068,8.53,ADHD-Combined,Male,114,107,118,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,469718.06 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,862.0 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2009.1 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2768273,9.24,Typically Developing Children,Female,122,112,140,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3060106E7 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1036841.0 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1021063.0 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1020317.75 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17942.1 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,816.3 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,512.2 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,373.3 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,531.4 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,743.9 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,928.9 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1476454.6 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,171020.73 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,237005.28 +,2768273,9.24,Typically Developing Children,Female,122,112,140,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,120.000374 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,886.3 +,2768273,9.24,Typically Developing Children,Female,122,112,140,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,948.0029 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1538.4 +,2768273,9.24,Typically Developing Children,Female,122,112,140,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3590.0112 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3668.4 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57074.2 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13750.9 +,2768273,9.24,Typically Developing Children,Female,122,112,140,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2438.0076 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4200.3 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,317.0 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6480.3 +,2768273,9.24,Typically Developing Children,Female,122,112,140,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1965.0061 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2261.9 +,2768273,9.24,Typically Developing Children,Female,122,112,140,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5984.0186 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6552.7 +,2768273,9.24,Typically Developing Children,Female,122,112,140,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7413.023 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7092.8 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4397.8 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,221.8 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,35.3 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1567715.0 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,213.9 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,170749.22 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,233883.5 +,2768273,9.24,Typically Developing Children,Female,122,112,140,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,337.00104 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,754.1 +,2768273,9.24,Typically Developing Children,Female,122,112,140,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,596.00183 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2194.7 +,2768273,9.24,Typically Developing Children,Female,122,112,140,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4010.0125 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4208.7 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58601.9 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13489.0 +,2768273,9.24,Typically Developing Children,Female,122,112,140,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3893.012 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4277.7 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,336.6 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4999.6 +,2768273,9.24,Typically Developing Children,Female,122,112,140,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2077.0063 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2125.7 +,2768273,9.24,Typically Developing Children,Female,122,112,140,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6298.0195 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6500.8 +,2768273,9.24,Typically Developing Children,Female,122,112,140,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7465.023 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7012.2 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4448.8 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,368.4 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,65.7 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64721.0 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,879162.75 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,891243.75 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,877989.0 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,341769.97 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,470888.78 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,652136.75 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12081.0 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,3203.0 +,2768273,9.24,Typically Developing Children,Female,122,112,140,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,247653.78 +,2768273,9.24,Typically Developing Children,Female,122,112,140,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,587068.8 +,2768273,9.24,Typically Developing Children,Female,122,112,140,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2768273,9.24,Typically Developing Children,Female,122,112,140,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,495168.56 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,611.4 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1351.5 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,http://purl.org/nidash/fsl#,Background (mm^3),,,1.111274E7 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1187190.0 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1173006.0 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1172819.2 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15792.6 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1120.1 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,518.2 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,644.1 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,693.7 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,916.0 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,855.1 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1418518.9 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,199740.66 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,284478.78 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,280.63037 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,701.0 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,860.51117 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1296.0 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3726.665 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3889.1 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60934.7 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13105.1 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3335.6445 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3649.9 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,268.4 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5116.9 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1514.8721 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1794.0 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4939.627 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4980.1 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7787.1606 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6892.7 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3696.5 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,367.5 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,10.1 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1533881.0 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,84.3 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,199923.0 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,286771.84 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,172.90024 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,687.9 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,522.69073 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1438.1 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3922.1753 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3922.4 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59862.5 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12594.2 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3097.5742 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3808.7 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,277.1 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5605.3 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1635.9022 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1733.2 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4532.6465 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5167.7 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7795.1406 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6640.0 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3395.9 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,508.2 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.5 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55532.0 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1029585.3 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1041207.3 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1026549.0 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,399663.66 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,571250.6 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,748178.6 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11622.0 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,924.8 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,164096.95 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,702675.9 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2773205,8.38,ADHD-Inattentive,Female,109,120,98,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,442942.47 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1250.2 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1404.2 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2780647,13.58,ADHD-Combined,Male,102,111,95,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1487593E7 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1365103.0 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1348198.0 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1348054.6 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21619.6 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,856.0 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,835.6 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,863.0 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,555.3 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,896.3 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1061.3 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1697580.1 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,259174.31 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,300931.12 +,2780647,13.58,ADHD-Combined,Male,102,111,95,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,413.0 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,434.7 +,2780647,13.58,ADHD-Combined,Male,102,111,95,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,917.25 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1850.1 +,2780647,13.58,ADHD-Combined,Male,102,111,95,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3277.75 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4201.8 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,64324.9 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13785.1 +,2780647,13.58,ADHD-Combined,Male,102,111,95,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4078.75 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4358.0 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,456.0 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6952.0 +,2780647,13.58,ADHD-Combined,Male,102,111,95,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1902.25 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2358.8 +,2780647,13.58,ADHD-Combined,Male,102,111,95,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4995.75 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5585.8 +,2780647,13.58,ADHD-Combined,Male,102,111,95,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8138.5 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9119.5 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4560.6 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,365.9 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,26.4 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1868882.0 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,132.5 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,262282.28 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,302821.88 +,2780647,13.58,ADHD-Combined,Male,102,111,95,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,290.75 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,443.9 +,2780647,13.58,ADHD-Combined,Male,102,111,95,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1258.0 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1866.1 +,2780647,13.58,ADHD-Combined,Male,102,111,95,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3139.5 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4008.4 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,65187.5 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12838.4 +,2780647,13.58,ADHD-Combined,Male,102,111,95,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4463.75 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4771.6 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,302.0 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5324.2 +,2780647,13.58,ADHD-Combined,Male,102,111,95,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1703.0 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2212.5 +,2780647,13.58,ADHD-Combined,Male,102,111,95,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5121.0 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5761.6 +,2780647,13.58,ADHD-Combined,Male,102,111,95,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7043.75 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8549.5 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4669.1 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,396.6 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,20.3 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66442.0 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1194253.6 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1207521.6 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1191684.0 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,521456.56 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,603753.0 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,801042.0 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13268.0 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,802.8 +,2780647,13.58,ADHD-Combined,Male,102,111,95,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,235457.0 +,2780647,13.58,ADHD-Combined,Male,102,111,95,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,714196.5 +,2780647,13.58,ADHD-Combined,Male,102,111,95,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2780647,13.58,ADHD-Combined,Male,102,111,95,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,687453.75 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,994.5 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1670.5 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1108832E7 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1103328.0 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1090839.0 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1091026.2 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17835.9 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,796.0 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,624.9 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,495.8 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,438.5 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,694.3 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,808.7 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1306785.1 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,188715.75 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,260065.31 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,426.92813 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,728.8 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,606.47736 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1530.8 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3930.1328 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3742.5 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54838.2 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11801.6 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3894.2231 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4364.0 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,157.2 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5044.9 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1683.7727 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1605.7 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5375.8364 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5453.1 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7588.947 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7683.2 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3568.8 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,489.6 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1442649.0 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,132.6 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,190721.97 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,261784.27 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,279.29877 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,559.4 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,819.2764 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1582.3 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3976.6826 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3888.1 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,52315.8 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11250.6 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4193.4717 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4307.8 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,286.0 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3416.8 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1810.1221 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1478.2 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5667.1055 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5685.8 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7715.2964 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7654.9 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3678.9 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,444.8 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59238.0 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,963215.3 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,972381.3 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,960202.0 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,379437.72 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,521849.6 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,689232.56 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9166.0 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,889.0 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,164698.5 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,686939.4 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2821683,10.69,ADHD-Inattentive,Male,134,137,123,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,438564.25 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1011.2 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2790.4 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2822304,9.62,Typically Developing Children,Female,111,98,119,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3056152E7 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1328076.0 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1312101.0 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1312811.5 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21583.2 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,985.8 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,797.7 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,913.8 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,513.5 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,981.1 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,952.3 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1531714.2 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,227503.25 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,317275.25 +,2822304,9.62,Typically Developing Children,Female,111,98,119,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,550.9972 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,807.7 +,2822304,9.62,Typically Developing Children,Female,111,98,119,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1042.9946 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1644.9 +,2822304,9.62,Typically Developing Children,Female,111,98,119,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4755.9756 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4532.7 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62703.2 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14412.6 +,2822304,9.62,Typically Developing Children,Female,111,98,119,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2460.9873 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3907.2 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,588.5 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5440.3 +,2822304,9.62,Typically Developing Children,Female,111,98,119,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1861.9905 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1651.5 +,2822304,9.62,Typically Developing Children,Female,111,98,119,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5133.9736 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5324.9 +,2822304,9.62,Typically Developing Children,Female,111,98,119,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9203.953 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8264.3 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4389.9 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,272.4 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,14.9 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1666976.0 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,76.0 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,228302.64 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,323168.28 +,2822304,9.62,Typically Developing Children,Female,111,98,119,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,428.9978 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,866.2 +,2822304,9.62,Typically Developing Children,Female,111,98,119,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1180.9939 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1926.7 +,2822304,9.62,Typically Developing Children,Female,111,98,119,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4780.9756 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4779.1 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61950.1 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14694.3 +,2822304,9.62,Typically Developing Children,Female,111,98,119,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3853.9802 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3895.8 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,352.5 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4780.6 +,2822304,9.62,Typically Developing Children,Female,111,98,119,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1827.9906 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1583.5 +,2822304,9.62,Typically Developing Children,Female,111,98,119,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5018.974 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5283.4 +,2822304,9.62,Typically Developing Children,Female,111,98,119,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8877.954 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8105.0 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4379.6 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,312.9 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,2.2 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63405.0 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1161261.5 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1172561.5 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1158895.0 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,455805.9 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,640443.56 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,828747.56 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11300.0 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,923.5 +,2822304,9.62,Typically Developing Children,Female,111,98,119,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,171135.11 +,2822304,9.62,Typically Developing Children,Female,111,98,119,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,610247.9 +,2822304,9.62,Typically Developing Children,Female,111,98,119,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2822304,9.62,Typically Developing Children,Female,111,98,119,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,508453.38 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,969.1 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2084.4 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1109973E7 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1268119.0 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1250700.0 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1250393.4 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16677.9 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1030.5 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,508.3 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,527.6 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,491.5 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,804.9 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,820.0 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1328004.5 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,212929.2 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,306182.03 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,339.15045 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,742.5 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,369.7405 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1306.9 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4209.4556 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4214.0 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53211.4 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11487.3 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3644.205 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3867.3 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,411.4 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6594.0 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1564.0822 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1814.1 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5463.6475 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5857.5 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6868.1294 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8192.7 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3447.6 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,440.6 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,52.3 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1663627.0 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,152.7 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,218584.94 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,312012.2 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,437.57062 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,732.2 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,180.88025 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1727.3 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4213.446 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4334.2 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61050.8 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11870.2 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3872.9653 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4085.3 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,320.5 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5863.1 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1856.6826 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1922.5 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5776.1978 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5916.3 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8094.391 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7993.7 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3635.8 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,481.5 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.3 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62086.0 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1115733.4 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1129431.4 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1112005.0 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,431514.16 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,618194.2 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,796703.2 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13698.0 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1654.5 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,146148.58 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,749279.1 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2854839,9.17,ADHD-Inattentive,Female,124,126,116,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,479081.28 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1044.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,3713.2 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,5.1 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,http://purl.org/nidash/fsl#,Background (mm^3),,,9314717.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1400707.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1380004.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1380549.1 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,27191.5 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,869.7 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,946.1 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,845.2 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,562.5 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1123.3 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1282.6 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1736631.2 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,258618.5 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,314164.75 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,651.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,732.7 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1044.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,2059.8 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4917.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4601.9 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60787.4 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,17317.6 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4595.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4407.4 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,401.6 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6420.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2198.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2821.2 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6385.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6699.1 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7635.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,11131.8 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4913.3 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,475.7 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,9.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1829288.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,154.7 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,261908.52 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,313733.34 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,657.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,761.3 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,850.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2245.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5207.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4901.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62308.7 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,16296.9 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4574.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4715.2 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,631.7 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6704.1 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2380.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2613.6 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6905.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6984.3 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8933.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9994.3 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,5073.4 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,640.8 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,11.5 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,76243.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1226312.1 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1241078.1 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1224043.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,520527.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,627898.1 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,827677.1 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14766.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,949.6 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,252214.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,785582.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2884672,12.83,ADHD-Inattentive,Male,110,100,117,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,664187.0 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,599.6 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1250.8 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2903997,11.91,Typically Developing Children,Female,126,121,121,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3058336E7 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1207554.0 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1195677.0 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1196898.9 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20023.5 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,838.6 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,460.5 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,459.4 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,476.6 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,851.7 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,636.3 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1455999.8 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,205947.86 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,288010.94 +,2903997,11.91,Typically Developing Children,Female,126,121,121,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,528.0005 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,698.8 +,2903997,11.91,Typically Developing Children,Female,126,121,121,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1074.001 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1755.8 +,2903997,11.91,Typically Developing Children,Female,126,121,121,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3817.0037 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3578.3 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63018.3 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14518.6 +,2903997,11.91,Typically Developing Children,Female,126,121,121,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3680.0034 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3847.4 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,312.7 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4494.2 +,2903997,11.91,Typically Developing Children,Female,126,121,121,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1709.0016 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1749.6 +,2903997,11.91,Typically Developing Children,Female,126,121,121,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4962.005 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5187.0 +,2903997,11.91,Typically Developing Children,Female,126,121,121,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8352.008 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7492.0 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3788.1 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,439.3 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,28.0 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1557008.0 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,109.2 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,203401.53 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,288365.53 +,2903997,11.91,Typically Developing Children,Female,126,121,121,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,531.0005 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,730.6 +,2903997,11.91,Typically Developing Children,Female,126,121,121,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1192.0011 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1654.7 +,2903997,11.91,Typically Developing Children,Female,126,121,121,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4128.004 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3781.8 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61741.6 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14026.9 +,2903997,11.91,Typically Developing Children,Female,126,121,121,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3834.0037 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3922.0 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,299.5 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4079.6 +,2903997,11.91,Typically Developing Children,Female,126,121,121,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1796.0017 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1521.1 +,2903997,11.91,Typically Developing Children,Female,126,121,121,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4976.005 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5053.4 +,2903997,11.91,Typically Developing Children,Female,126,121,121,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8297.008 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7150.7 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3922.8 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,505.6 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.9 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57590.0 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1045309.8 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1054954.9 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1042016.0 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,409349.38 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,576376.44 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,759570.44 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9645.0 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,972.9 +,2903997,11.91,Typically Developing Children,Female,126,121,121,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,161906.16 +,2903997,11.91,Typically Developing Children,Female,126,121,121,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,664301.6 +,2903997,11.91,Typically Developing Children,Female,126,121,121,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2903997,11.91,Typically Developing Children,Female,126,121,121,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,481717.47 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,938.3 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1128.3 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2907383,12.24,Typically Developing Children,Female,109,105,111,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1110468E7 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1159631.0 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1141978.0 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1141888.8 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16060.9 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,934.8 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,557.0 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,402.1 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,572.4 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,911.7 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,861.5 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1222734.2 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,204740.83 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,266811.47 +,2907383,12.24,Typically Developing Children,Female,109,105,111,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,561.25757 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,889.4 +,2907383,12.24,Typically Developing Children,Female,109,105,111,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,732.8268 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1205.1 +,2907383,12.24,Typically Developing Children,Female,109,105,111,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4545.9204 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4417.8 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52461.9 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11939.4 +,2907383,12.24,Typically Developing Children,Female,109,105,111,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2746.438 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3094.5 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,305.4 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6584.3 +,2907383,12.24,Typically Developing Children,Female,109,105,111,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1646.5328 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1766.9 +,2907383,12.24,Typically Developing Children,Female,109,105,111,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4521.9805 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4853.1 +,2907383,12.24,Typically Developing Children,Female,109,105,111,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7767.166 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7613.7 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3686.0 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,553.7 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,31.8 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1544224.0 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,109.3 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,205123.06 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,274581.44 +,2907383,12.24,Typically Developing Children,Female,109,105,111,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,460.17798 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,747.6 +,2907383,12.24,Typically Developing Children,Female,109,105,111,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,792.6765 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1410.3 +,2907383,12.24,Typically Developing Children,Female,109,105,111,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4448.8306 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4315.2 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56636.9 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12368.5 +,2907383,12.24,Typically Developing Children,Female,109,105,111,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3446.015 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3398.0 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,198.6 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7123.2 +,2907383,12.24,Typically Developing Children,Female,109,105,111,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1619.933 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1680.3 +,2907383,12.24,Typically Developing Children,Female,109,105,111,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5165.6973 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4920.9 +,2907383,12.24,Typically Developing Children,Female,109,105,111,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7876.2256 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7410.5 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3656.4 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,586.8 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,20.9 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57128.0 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1011369.75 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1026268.75 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1008388.0 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,409863.9 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,541392.9 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,708917.9 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14899.0 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1116.9 +,2907383,12.24,Typically Developing Children,Female,109,105,111,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,169119.4 +,2907383,12.24,Typically Developing Children,Female,109,105,111,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,667819.4 +,2907383,12.24,Typically Developing Children,Female,109,105,111,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2907383,12.24,Typically Developing Children,Female,109,105,111,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,437929.84 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1419.1 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2652.3 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2907951,16,ADHD-Inattentive,Male,103,98,107,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1009315E7 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1292110.0 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1270567.0 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1271218.0 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19758.7 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,775.0 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,726.6 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,721.1 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,507.3 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,907.8 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1236.3 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1807812.2 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,231405.58 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,290364.94 +,2907951,16,ADHD-Inattentive,Male,103,98,107,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,539.64844 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,487.9 +,2907951,16,ADHD-Inattentive,Male,103,98,107,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1118.8477 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1573.4 +,2907951,16,ADHD-Inattentive,Male,103,98,107,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3772.2656 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3682.0 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,67761.9 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13699.6 +,2907951,16,ADHD-Inattentive,Male,103,98,107,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3266.0156 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4196.6 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,264.3 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8025.5 +,2907951,16,ADHD-Inattentive,Male,103,98,107,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2019.7266 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2243.0 +,2907951,16,ADHD-Inattentive,Male,103,98,107,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5479.9805 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5532.5 +,2907951,16,ADHD-Inattentive,Male,103,98,107,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8276.66 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8660.7 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4351.2 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,411.4 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,14.8 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1825973.0 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,234.5 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,232015.58 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,290216.88 +,2907951,16,ADHD-Inattentive,Male,103,98,107,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,479.8828 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,505.5 +,2907951,16,ADHD-Inattentive,Male,103,98,107,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1028.3203 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1757.2 +,2907951,16,ADHD-Inattentive,Male,103,98,107,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3846.0938 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3716.9 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62384.6 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,18634.6 +,2907951,16,ADHD-Inattentive,Male,103,98,107,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3842.5781 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4463.5 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,331.7 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7236.6 +,2907951,16,ADHD-Inattentive,Male,103,98,107,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1976.6602 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2115.0 +,2907951,16,ADHD-Inattentive,Male,103,98,107,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5992.383 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5854.3 +,2907951,16,ADHD-Inattentive,Male,103,98,107,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8245.898 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8583.8 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4259.6 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,459.5 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,21.8 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63693.0 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1110851.0 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1127170.0 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1106885.0 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,463421.16 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,580581.8 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,775818.8 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,16319.0 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,701.6 +,2907951,16,ADHD-Inattentive,Male,103,98,107,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,250849.52 +,2907951,16,ADHD-Inattentive,Male,103,98,107,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,730699.8 +,2907951,16,ADHD-Inattentive,Male,103,98,107,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2907951,16,ADHD-Inattentive,Male,103,98,107,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,596218.4 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,834.3 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2090.6 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2917777,12.66,Typically Developing Children,Male,100,104,95,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3058988E7 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1247890.0 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1230434.0 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1231314.6 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18553.3 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,875.6 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,527.2 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,445.1 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,495.9 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,794.2 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,811.5 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1532654.0 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,228536.4 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,295174.66 +,2917777,12.66,Typically Developing Children,Male,100,104,95,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,415.0039 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,678.2 +,2917777,12.66,Typically Developing Children,Male,100,104,95,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1170.011 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1844.8 +,2917777,12.66,Typically Developing Children,Male,100,104,95,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4116.0386 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3851.9 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,51781.0 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11706.5 +,2917777,12.66,Typically Developing Children,Male,100,104,95,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3298.031 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3897.9 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,679.6 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5902.8 +,2917777,12.66,Typically Developing Children,Male,100,104,95,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1814.0171 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1891.7 +,2917777,12.66,Typically Developing Children,Male,100,104,95,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5333.0503 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5583.3 +,2917777,12.66,Typically Developing Children,Male,100,104,95,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7990.075 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7586.7 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3511.0 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,479.4 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,15.8 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1588985.0 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,66.2 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,228331.44 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,294839.16 +,2917777,12.66,Typically Developing Children,Male,100,104,95,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,434.0041 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,549.2 +,2917777,12.66,Typically Developing Children,Male,100,104,95,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1178.0111 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1918.7 +,2917777,12.66,Typically Developing Children,Male,100,104,95,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4247.04 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4177.9 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,50268.1 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11110.6 +,2917777,12.66,Typically Developing Children,Male,100,104,95,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3285.031 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3785.6 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,383.0 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6355.3 +,2917777,12.66,Typically Developing Children,Male,100,104,95,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1736.0164 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1677.8 +,2917777,12.66,Typically Developing Children,Male,100,104,95,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5426.0513 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5544.0 +,2917777,12.66,Typically Developing Children,Male,100,104,95,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7893.074 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7404.4 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3926.9 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,455.7 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,47.8 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59696.0 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1108330.6 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1122168.6 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1105692.0 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,456867.84 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,590013.8 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,752497.8 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13838.0 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,802.0 +,2917777,12.66,Typically Developing Children,Male,100,104,95,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,202378.92 +,2917777,12.66,Typically Developing Children,Male,100,104,95,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,665284.25 +,2917777,12.66,Typically Developing Children,Male,100,104,95,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2917777,12.66,Typically Developing Children,Male,100,104,95,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,522133.9 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,850.9 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1998.4 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,http://purl.org/nidash/fsl#,Background (mm^3),,,9318052.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1310929.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1290777.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1291305.2 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21773.9 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,798.7 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,512.6 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,560.1 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,389.6 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,987.3 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1085.7 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1713678.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,246696.39 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,293339.1 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,621.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,609.9 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1362.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1861.9 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4430.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4340.7 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61865.5 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15218.2 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2614.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4304.7 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,719.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6637.1 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2117.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2329.9 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6593.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6821.6 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8875.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8593.1 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4261.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,689.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,31.7 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1720929.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,212.4 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,236082.98 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,291866.72 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,595.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,639.9 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1804.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2206.7 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4345.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4475.3 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62313.9 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14210.5 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3256.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4418.5 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,309.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7938.5 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2064.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2195.9 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6638.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6815.7 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8282.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8529.7 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4390.9 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,586.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,30.8 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68373.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1140100.2 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1156517.2 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1135694.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,482779.38 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,585205.8 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,779681.8 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,16417.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1118.7 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,223962.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,694375.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2919220,13.58,ADHD-Inattentive,Male,111,106,114,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,589668.0 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1265.4 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1613.4 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2930625,9.97,Typically Developing Children,Male,106,127,91,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3056251E7 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1299151.0 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1285944.0 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1286925.2 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21417.7 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,701.8 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,536.7 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,519.3 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,433.8 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,569.5 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,819.2 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1551444.4 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,234048.05 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,298072.78 +,2930625,9.97,Typically Developing Children,Male,106,127,91,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,544.99457 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,727.2 +,2930625,9.97,Typically Developing Children,Male,106,127,91,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1148.9885 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1661.1 +,2930625,9.97,Typically Developing Children,Male,106,127,91,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4132.959 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3807.1 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,65918.0 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14652.2 +,2930625,9.97,Typically Developing Children,Male,106,127,91,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3959.9607 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3959.7 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,385.0 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4612.2 +,2930625,9.97,Typically Developing Children,Male,106,127,91,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1772.9823 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1737.3 +,2930625,9.97,Typically Developing Children,Male,106,127,91,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5182.948 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5508.0 +,2930625,9.97,Typically Developing Children,Male,106,127,91,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8895.911 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7707.9 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4148.5 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,329.9 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,17.0 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1650264.0 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,192.5 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,234901.19 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,299587.28 +,2930625,9.97,Typically Developing Children,Male,106,127,91,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,433.99567 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,685.4 +,2930625,9.97,Typically Developing Children,Male,106,127,91,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1017.98987 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1820.7 +,2930625,9.97,Typically Developing Children,Male,106,127,91,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4026.96 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4184.7 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64460.1 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13880.0 +,2930625,9.97,Typically Developing Children,Male,106,127,91,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3643.9636 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4197.5 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,396.4 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3773.2 +,2930625,9.97,Typically Developing Children,Male,106,127,91,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1847.9816 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1693.4 +,2930625,9.97,Typically Developing Children,Male,106,127,91,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5589.9443 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5791.4 +,2930625,9.97,Typically Developing Children,Male,106,127,91,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8618.914 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7542.4 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4447.0 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,490.1 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,26.2 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61557.0 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1129753.2 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1139293.2 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1127029.0 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,468949.22 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,597660.06 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,790271.06 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9540.0 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1453.5 +,2930625,9.97,Typically Developing Children,Male,106,127,91,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,245266.56 +,2930625,9.97,Typically Developing Children,Male,106,127,91,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,615075.9 +,2930625,9.97,Typically Developing Children,Male,106,127,91,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2930625,9.97,Typically Developing Children,Male,106,127,91,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,523554.78 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,779.4 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2207.9 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1109255E7 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1236383.0 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1223917.0 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1224288.1 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19478.8 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,708.1 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,633.4 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,527.2 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,382.2 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,761.9 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,763.3 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1586268.6 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,211201.42 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,298750.94 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,542.64 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,768.7 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1167.74 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1839.8 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3552.4302 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3669.3 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58408.7 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12567.1 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4210.7803 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4074.1 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,540.6 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3658.1 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1759.5901 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2314.9 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5175.0303 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4968.1 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7066.29 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7467.1 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3934.1 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,525.4 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,18.8 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1638728.0 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,141.5 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,211658.83 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,301339.97 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,486.78003 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,636.5 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1279.4601 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2017.0 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2670.6401 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3947.6 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56444.0 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13724.5 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4365.06 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4264.8 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,601.8 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3631.5 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1787.52 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1758.8 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5692.4004 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5767.5 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7837.6904 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7109.2 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3564.9 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,598.2 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,5.3 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60141.0 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1085579.1 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1094518.1 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1082596.0 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,422860.25 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,600090.94 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,776017.94 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8939.0 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1380.1 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,185766.42 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,742330.2 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,9.4 +,2940712,13.08,ADHD-Inattentive,Male,110,73,124,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,506329.7 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1144.4 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,3035.6 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2950672,11.28,ADHD-Combined,Male,97,95,99,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1102692E7 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1222093.0 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1198835.0 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1198687.2 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19839.9 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1033.1 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,670.6 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,656.8 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,620.1 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,950.8 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1071.9 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1537866.4 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,212922.55 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,278418.1 +,2950672,11.28,ADHD-Combined,Male,97,95,99,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,670.3209 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,848.6 +,2950672,11.28,ADHD-Combined,Male,97,95,99,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,805.9811 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1596.4 +,2950672,11.28,ADHD-Combined,Male,97,95,99,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4890.4165 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4823.1 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60224.3 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16928.3 +,2950672,11.28,ADHD-Combined,Male,97,95,99,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4109.7056 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4120.1 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,366.2 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8066.8 +,2950672,11.28,ADHD-Combined,Male,97,95,99,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2194.503 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2397.4 +,2950672,11.28,ADHD-Combined,Male,97,95,99,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6292.239 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6100.7 +,2950672,11.28,ADHD-Combined,Male,97,95,99,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8501.372 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7824.2 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4053.6 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,553.2 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,2.7 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1626089.0 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,138.3 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,213118.52 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,281028.06 +,2950672,11.28,ADHD-Combined,Male,97,95,99,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,672.98096 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,739.4 +,2950672,11.28,ADHD-Combined,Male,97,95,99,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,395.01056 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1745.7 +,2950672,11.28,ADHD-Combined,Male,97,95,99,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4754.7563 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4798.5 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57190.9 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13657.2 +,2950672,11.28,ADHD-Combined,Male,97,95,99,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3952.7654 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4290.7 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,477.9 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8745.1 +,2950672,11.28,ADHD-Combined,Male,97,95,99,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2217.113 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2129.3 +,2950672,11.28,ADHD-Combined,Male,97,95,99,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6620.749 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6074.0 +,2950672,11.28,ADHD-Combined,Male,97,95,99,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8094.391 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7632.7 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4444.8 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,540.3 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65524.0 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1054418.2 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1072705.2 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1051033.0 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,426041.06 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,559446.2 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,742723.2 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,18287.0 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1336.0 +,2950672,11.28,ADHD-Combined,Male,97,95,99,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,185810.56 +,2950672,11.28,ADHD-Combined,Male,97,95,99,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,725468.1 +,2950672,11.28,ADHD-Combined,Male,97,95,99,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2950672,11.28,ADHD-Combined,Male,97,95,99,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,505077.5 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1146.2 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2000.3 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,http://purl.org/nidash/fsl#,Background (mm^3),,,9316808.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1478619.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1445892.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1447220.5 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,23602.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,981.5 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,446.6 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,538.9 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,552.5 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1060.3 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1035.7 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1911870.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,263386.16 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,339944.7 +,2950754,13.33,ADHD-Combined,Male,127,109,137,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,742.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,719.7 +,2950754,13.33,ADHD-Combined,Male,127,109,137,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1067.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1963.7 +,2950754,13.33,ADHD-Combined,Male,127,109,137,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4231.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4386.4 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,69494.4 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,17812.6 +,2950754,13.33,ADHD-Combined,Male,127,109,137,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3044.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4367.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,450.7 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,14573.5 +,2950754,13.33,ADHD-Combined,Male,127,109,137,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2015.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2382.5 +,2950754,13.33,ADHD-Combined,Male,127,109,137,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6113.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6551.5 +,2950754,13.33,ADHD-Combined,Male,127,109,137,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9261.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8793.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4753.6 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,630.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,25.6 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1897280.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,102.5 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,262818.2 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,339137.47 +,2950754,13.33,ADHD-Combined,Male,127,109,137,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,118.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,675.6 +,2950754,13.33,ADHD-Combined,Male,127,109,137,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1373.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1832.4 +,2950754,13.33,ADHD-Combined,Male,127,109,137,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4571.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4476.8 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,68642.1 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,16000.5 +,2950754,13.33,ADHD-Combined,Male,127,109,137,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4444.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4611.2 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,232.3 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,12511.3 +,2950754,13.33,ADHD-Combined,Male,127,109,137,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1944.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2096.9 +,2950754,13.33,ADHD-Combined,Male,127,109,137,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6330.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6303.9 +,2950754,13.33,ADHD-Combined,Male,127,109,137,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9587.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9122.6 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4806.9 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,674.6 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,20.7 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,69485.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1277559.5 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1306234.5 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1273383.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,526204.4 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,679082.2 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,888097.2 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,28675.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,857.2 +,2950754,13.33,ADHD-Combined,Male,127,109,137,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,216869.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,785130.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2950754,13.33,ADHD-Combined,Male,127,109,137,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,644621.0 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,705.5 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1420.2 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1106861E7 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1164745.0 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1152348.0 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1152357.9 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18284.4 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1062.8 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,700.2 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,747.1 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,677.6 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1181.3 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,808.5 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1436989.5 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,205317.25 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,276012.34 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,670.3209 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,757.6 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,498.75067 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1483.2 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4423.586 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4324.4 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52396.2 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11995.2 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3479.2847 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4190.5 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,477.5 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4491.3 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1876.6326 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1872.6 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5572.7075 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5656.2 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7957.401 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7609.9 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3863.4 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,495.2 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,56.1 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1559742.0 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,150.1 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,206920.16 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,272336.16 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,349.79047 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,767.3 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1512.212 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1825.7 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4931.647 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4820.1 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,52023.7 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12686.7 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4041.8755 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4178.1 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,504.4 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3553.5 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1784.8624 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1852.2 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5596.6475 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5805.8 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7307.0303 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7718.5 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3819.5 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,704.2 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,25.8 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62953.0 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1025419.94 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1035079.94 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1023445.0 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,412237.4 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,548348.5 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,716210.5 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9660.0 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,890.7 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,171659.34 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,685992.3 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2983819,12.28,ADHD-Inattentive,Female,107,103,108,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,481190.7 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1052.6 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2026.1 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1498358E7 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1031297.0 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1018466.0 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1017182.9 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20724.9 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,732.1 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,903.7 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,757.6 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,564.6 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,925.5 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1074.1 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1328699.0 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,172762.78 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,234211.78 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,138.75 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,562.4 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,921.0 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1270.4 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2361.25 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2976.9 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61376.1 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12826.9 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2584.0 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2286.5 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,14.9 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5548.8 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1459.5 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1903.0 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,3255.25 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4011.3 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6182.25 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7127.7 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,5530.0 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,387.1 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1576143.0 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,61.8 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,174294.45 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,231369.84 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,203.0 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,467.7 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,849.75 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1891.4 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2991.0 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3315.4 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60988.2 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12115.0 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3739.0 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4029.1 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,73.1 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3276.1 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1377.25 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1937.8 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,3420.5 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4282.3 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6495.25 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7026.3 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,5429.6 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,225.7 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56233.0 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,872509.9 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,881269.9 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,870083.0 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,347057.22 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,465581.62 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,646219.6 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8760.0 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,3956.7 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,228240.0 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,610310.75 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2984158,14.17,ADHD-Inattentive,Male,107,115,99,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,547284.25 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,720.8 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1830.5 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2991307,8.3,Typically Developing Children,Male,118,117,115,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1106676E7 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1321920.0 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1308728.0 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1308686.9 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22240.6 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1138.8 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,636.3 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,692.4 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,639.5 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,976.2 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,948.3 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1591532.4 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,240553.19 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,303826.84 +,2991307,8.3,Typically Developing Children,Male,118,117,115,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,694.261 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,809.2 +,2991307,8.3,Typically Developing Children,Male,118,117,115,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,751.45105 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1529.2 +,2991307,8.3,Typically Developing Children,Male,118,117,115,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4144.2856 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4564.5 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,66919.8 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14087.3 +,2991307,8.3,Typically Developing Children,Male,118,117,115,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3410.1248 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3552.1 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,321.3 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5205.0 +,2991307,8.3,Typically Developing Children,Male,118,117,115,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1917.8627 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1941.5 +,2991307,8.3,Typically Developing Children,Male,118,117,115,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5667.1377 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6009.7 +,2991307,8.3,Typically Developing Children,Male,118,117,115,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8356.401 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8175.9 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4390.8 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,542.8 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1691885.0 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,220.6 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,239379.67 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,302071.16 +,2991307,8.3,Typically Developing Children,Male,118,117,115,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,481.46066 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,685.9 +,2991307,8.3,Typically Developing Children,Male,118,117,115,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,844.55115 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1769.0 +,2991307,8.3,Typically Developing Children,Male,118,117,115,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4499.396 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4540.8 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,65825.8 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13466.0 +,2991307,8.3,Typically Developing Children,Male,118,117,115,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3689.425 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3695.8 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,467.7 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3297.8 +,2991307,8.3,Typically Developing Children,Male,118,117,115,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1959.0927 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1863.7 +,2991307,8.3,Typically Developing Children,Male,118,117,115,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5834.7183 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5845.6 +,2991307,8.3,Typically Developing Children,Male,118,117,115,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7937.451 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8044.6 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4209.1 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,599.8 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.4 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63446.0 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1151990.9 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1161917.9 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1149093.0 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,479932.84 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,605898.0 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,801882.0 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9927.0 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1024.2 +,2991307,8.3,Typically Developing Children,Male,118,117,115,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,156107.64 +,2991307,8.3,Typically Developing Children,Male,118,117,115,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,782684.8 +,2991307,8.3,Typically Developing Children,Male,118,117,115,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2991307,8.3,Typically Developing Children,Male,118,117,115,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,540758.8 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,931.1 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2030.3 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,http://purl.org/nidash/fsl#,Background (mm^3),,,1.110752E7 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1365127.0 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1348944.0 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1349029.1 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22787.2 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,888.7 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,451.2 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,380.8 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,476.3 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,769.1 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,901.7 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1653380.8 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,243337.84 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,308339.44 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,633.0809 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,655.7 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1020.1114 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1701.7 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3834.3953 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3727.8 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,71188.6 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,17910.0 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3138.8042 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4076.7 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,403.5 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7135.4 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1983.0327 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2197.8 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5668.468 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6121.7 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8011.931 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8996.4 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4371.3 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,366.7 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,11.6 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1792567.0 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,154.2 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,242463.67 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,310792.25 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,610.4708 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,740.4 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1126.5116 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2100.6 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4088.4255 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3823.6 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,71696.2 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,16785.8 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3790.5051 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4240.6 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,373.5 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4207.6 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1973.7227 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2092.7 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5919.8384 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6016.1 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7545.1006 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8744.5 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4478.5 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,564.5 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,13.5 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66215.0 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1174089.1 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1186708.1 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1170912.0 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,485801.53 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,619131.7 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,829165.7 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12619.0 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1616.0 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,202178.89 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,771508.8 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,2996531,12.62,ADHD-Inattentive,Male,132,119,137,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,563089.5 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,758.5 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1736.1 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3011311,11.56,Typically Developing Children,Female,103,91,115,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1112048E7 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1117007.0 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1096443.0 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1096850.1 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18535.2 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1079.5 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,440.4 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,572.6 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,558.2 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,892.0 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,820.8 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1402126.8 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,201176.5 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,257932.33 +,3011311,11.56,Typically Developing Children,Female,103,91,115,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,345.80048 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,551.7 +,3011311,11.56,Typically Developing Children,Female,103,91,115,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,960.26135 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1212.7 +,3011311,11.56,Typically Developing Children,Female,103,91,115,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3739.965 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3792.5 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,49516.2 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12230.2 +,3011311,11.56,Typically Developing Children,Female,103,91,115,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3398.1548 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3673.2 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,349.7 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8869.1 +,3011311,11.56,Typically Developing Children,Female,103,91,115,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1747.6224 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1693.8 +,3011311,11.56,Typically Developing Children,Female,103,91,115,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4660.326 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4647.8 +,3011311,11.56,Typically Developing Children,Female,103,91,115,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7700.7104 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7078.5 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3875.9 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,419.1 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1448684.0 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,160.1 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,201633.8 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,257702.44 +,3011311,11.56,Typically Developing Children,Female,103,91,115,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,401.66055 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,623.5 +,3011311,11.56,Typically Developing Children,Female,103,91,115,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1216.9517 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1509.7 +,3011311,11.56,Typically Developing Children,Female,103,91,115,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4069.8057 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4014.4 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,50297.5 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11578.2 +,3011311,11.56,Typically Developing Children,Female,103,91,115,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2831.574 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3893.9 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,548.2 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7448.0 +,3011311,11.56,Typically Developing Children,Female,103,91,115,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1703.7323 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1578.0 +,3011311,11.56,Typically Developing Children,Female,103,91,115,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4615.1064 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4671.7 +,3011311,11.56,Typically Developing Children,Female,103,91,115,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7424.0703 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6862.7 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3837.0 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,560.1 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,3.8 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55318.0 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,975798.06 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,993305.06 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,973221.0 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,402810.3 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,515634.78 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,671044.75 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,17507.0 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,748.7 +,3011311,11.56,Typically Developing Children,Female,103,91,115,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,157536.06 +,3011311,11.56,Typically Developing Children,Female,103,91,115,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,632475.75 +,3011311,11.56,Typically Developing Children,Female,103,91,115,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3011311,11.56,Typically Developing Children,Female,103,91,115,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,460208.56 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,835.7 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1797.8 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3103809,9.3,Typically Developing Children,Male,102,92,104,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3058459E7 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1161961.0 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1148500.0 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1149548.8 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18193.2 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,781.4 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,371.3 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,477.8 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,360.9 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,669.3 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,957.9 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1416002.2 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,184440.88 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,290976.56 +,3103809,9.3,Typically Developing Children,Male,102,92,104,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,658.99786 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,726.3 +,3103809,9.3,Typically Developing Children,Male,102,92,104,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,971.9969 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1690.1 +,3103809,9.3,Typically Developing Children,Male,102,92,104,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3971.9873 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4031.3 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55664.8 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12293.3 +,3103809,9.3,Typically Developing Children,Male,102,92,104,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3355.9893 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3618.9 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,396.8 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5130.8 +,3103809,9.3,Typically Developing Children,Male,102,92,104,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1712.9945 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1632.3 +,3103809,9.3,Typically Developing Children,Male,102,92,104,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5417.9824 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5751.2 +,3103809,9.3,Typically Developing Children,Male,102,92,104,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8520.973 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7393.2 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3728.8 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,380.6 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,18.2 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1493513.0 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,104.8 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,182962.1 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,297979.28 +,3103809,9.3,Typically Developing Children,Male,102,92,104,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,600.99805 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,710.7 +,3103809,9.3,Typically Developing Children,Male,102,92,104,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,830.9973 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1542.6 +,3103809,9.3,Typically Developing Children,Male,102,92,104,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4209.9863 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4355.5 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53907.5 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11963.7 +,3103809,9.3,Typically Developing Children,Male,102,92,104,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3461.9888 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3890.5 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,333.2 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3710.2 +,3103809,9.3,Typically Developing Children,Male,102,92,104,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1722.9945 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1620.3 +,3103809,9.3,Typically Developing Children,Male,102,92,104,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5203.9834 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5572.6 +,3103809,9.3,Typically Developing Children,Male,102,92,104,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8056.974 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7344.9 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3879.5 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,534.4 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,10.3 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59606.0 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1017414.8 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1027393.8 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1014835.0 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,367402.97 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,588955.8 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,758666.8 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9979.0 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,722.3 +,3103809,9.3,Typically Developing Children,Male,102,92,104,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,156516.5 +,3103809,9.3,Typically Developing Children,Male,102,92,104,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,592511.06 +,3103809,9.3,Typically Developing Children,Male,102,92,104,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3103809,9.3,Typically Developing Children,Male,102,92,104,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,422366.62 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,626.0 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1606.5 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3056312E7 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1310408.0 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1297231.0 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1297768.1 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18735.4 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,966.8 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,440.5 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,381.7 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,516.8 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,880.5 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,676.3 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1569976.8 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,213019.19 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,318242.0 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,561.99396 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,757.2 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,738.992 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1664.8 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3917.9578 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3851.1 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,66469.9 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14009.1 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3448.963 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4066.9 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,236.9 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5268.8 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1737.9812 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1603.1 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5736.938 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6055.9 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8854.904 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8034.0 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3713.2 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,375.8 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,39.0 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1679714.0 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,205.3 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,214276.92 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,331210.06 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,600.9935 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,736.0 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,896.9903 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1872.8 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3953.9573 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4191.1 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,65849.3 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13681.1 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4009.9568 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3929.4 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,286.2 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3981.0 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1834.9802 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1506.3 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5585.94 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5778.0 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8865.904 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7634.0 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3689.0 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,673.7 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,46.4 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61121.0 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1139783.1 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1150285.1 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1137206.0 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,427296.12 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,649452.06 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,843501.06 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10502.0 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1032.4 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,186403.98 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,666041.8 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3119327,10.15,ADHD-Inattentive,Male,119,125,119,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,489623.72 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,665.8 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2591.7 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,1.4 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,http://purl.org/nidash/fsl#,Background (mm^3),,,1.306066E7 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1167774.0 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1152727.0 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1153910.1 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22010.4 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,839.3 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,398.9 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,414.2 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,447.6 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,775.4 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,539.7 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1360565.8 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,192581.16 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,278675.4 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,554.9998 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,723.0 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,802.99976 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1606.9 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3362.999 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3264.1 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,64131.4 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15319.7 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3469.999 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3805.2 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,468.4 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5509.3 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1801.9995 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1814.5 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5437.9985 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5691.0 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7884.9976 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7752.9 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3801.1 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,415.5 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,23.0 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1480588.0 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,132.0 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,191038.84 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,277546.72 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,376.99988 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,669.4 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,822.99976 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1689.9 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3506.999 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3378.7 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61939.4 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14141.4 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3485.999 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4170.4 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,494.1 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4609.0 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1847.9994 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1663.0 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5263.9985 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5422.9 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7914.9976 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7670.2 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3943.4 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,463.5 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.3 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59024.0 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1000064.1 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1011520.1 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,997563.0 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,383620.0 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,556222.1 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,741563.1 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11456.0 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,686.9 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,173619.94 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,650292.8 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3154996,11.65,ADHD-Inattentive,Male,88,98,93,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,465386.84 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,666.1 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1422.7 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3157406,14,Typically Developing Children,Male,102,103,101,http://purl.org/nidash/fsl#,Background (mm^3),,,9323771.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1228925.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1217360.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1218397.4 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19537.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,590.9 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,551.9 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,502.7 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,385.6 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,824.3 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,779.5 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1513381.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,217797.88 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,293433.2 +,3157406,14,Typically Developing Children,Male,102,103,101,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,648.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,726.8 +,3157406,14,Typically Developing Children,Male,102,103,101,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,605.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1815.7 +,3157406,14,Typically Developing Children,Male,102,103,101,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3761.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4264.4 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56073.9 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14513.7 +,3157406,14,Typically Developing Children,Male,102,103,101,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3177.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4030.7 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,227.4 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4084.0 +,3157406,14,Typically Developing Children,Male,102,103,101,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1645.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2080.9 +,3157406,14,Typically Developing Children,Male,102,103,101,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5190.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6007.0 +,3157406,14,Typically Developing Children,Male,102,103,101,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7972.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7964.9 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3989.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,412.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,31.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1622095.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,149.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,214863.12 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,290877.16 +,3157406,14,Typically Developing Children,Male,102,103,101,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,574.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,799.8 +,3157406,14,Typically Developing Children,Male,102,103,101,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1344.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1705.5 +,3157406,14,Typically Developing Children,Male,102,103,101,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3806.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4006.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55568.6 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12738.7 +,3157406,14,Typically Developing Children,Male,102,103,101,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3791.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4036.5 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,399.9 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3663.6 +,3157406,14,Typically Developing Children,Male,102,103,101,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1757.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2005.8 +,3157406,14,Typically Developing Children,Male,102,103,101,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5605.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5876.2 +,3157406,14,Typically Developing Children,Male,102,103,101,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8002.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8019.6 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3872.5 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,324.4 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.2 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62506.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1081763.4 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1090518.4 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1078367.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,432661.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,584310.3 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,759218.3 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8755.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1462.1 +,3157406,14,Typically Developing Children,Male,102,103,101,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,200526.0 +,3157406,14,Typically Developing Children,Male,102,103,101,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,673732.0 +,3157406,14,Typically Developing Children,Male,102,103,101,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3157406,14,Typically Developing Children,Male,102,103,101,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,552873.0 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,895.8 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1983.2 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,2.9 +,3160561,11.95,ADHD-Combined,Male,99,108,93,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3055234E7 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1254145.0 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1240033.0 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1240457.4 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22994.0 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,760.4 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,615.7 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,433.2 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,407.5 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,761.3 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,917.5 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1527359.1 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,225374.81 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,274775.25 +,3160561,11.95,ADHD-Combined,Male,99,108,93,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,718.0051 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,792.1 +,3160561,11.95,ADHD-Combined,Male,99,108,93,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1115.0079 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1727.9 +,3160561,11.95,ADHD-Combined,Male,99,108,93,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4450.0317 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4244.1 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,66861.6 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,17220.8 +,3160561,11.95,ADHD-Combined,Male,99,108,93,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3879.0278 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3932.7 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,243.0 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5303.0 +,3160561,11.95,ADHD-Combined,Male,99,108,93,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1885.0134 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2099.3 +,3160561,11.95,ADHD-Combined,Male,99,108,93,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4986.0356 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5383.9 +,3160561,11.95,ADHD-Combined,Male,99,108,93,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9187.065 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8107.3 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4680.8 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,325.5 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,108.2 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1583771.0 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,176.4 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,228573.6 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,280850.75 +,3160561,11.95,ADHD-Combined,Male,99,108,93,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,615.0044 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,671.5 +,3160561,11.95,ADHD-Combined,Male,99,108,93,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1064.0076 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1905.1 +,3160561,11.95,ADHD-Combined,Male,99,108,93,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4436.0317 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4662.3 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,65712.8 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,16221.5 +,3160561,11.95,ADHD-Combined,Male,99,108,93,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3739.0269 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4011.4 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,393.9 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3967.7 +,3160561,11.95,ADHD-Combined,Male,99,108,93,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2022.0144 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1863.4 +,3160561,11.95,ADHD-Combined,Male,99,108,93,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5068.036 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5193.0 +,3160561,11.95,ADHD-Combined,Male,99,108,93,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8895.063 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7829.8 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4634.1 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,558.2 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,21.4 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63920.0 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1076194.4 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1086618.4 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1073048.0 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,453948.4 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,555626.0 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,753811.0 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10424.0 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1472.7 +,3160561,11.95,ADHD-Combined,Male,99,108,93,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,250330.8 +,3160561,11.95,ADHD-Combined,Male,99,108,93,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,585679.25 +,3160561,11.95,ADHD-Combined,Male,99,108,93,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3160561,11.95,ADHD-Combined,Male,99,108,93,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,534349.8 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,917.7 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2295.5 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3163200,11.91,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1113216E7 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1116508.0 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1096136.0 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1096296.4 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22234.3 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,882.6 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,447.6 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,520.0 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,511.4 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,900.0 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,850.8 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1523057.1 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,231444.75 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,224832.45 +,3163200,11.91,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,569.2408 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,581.2 +,3163200,11.91,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,724.851 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1066.1 +,3163200,11.91,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3660.165 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3501.7 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55932.1 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14214.5 +,3163200,11.91,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3688.095 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3374.9 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,211.0 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7026.4 +,3163200,11.91,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1768.9025 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2309.7 +,3163200,11.91,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5093.907 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5319.4 +,3163200,11.91,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6497.059 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7296.8 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3956.1 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,443.9 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1572393.0 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,143.7 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,225674.2 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,219152.98 +,3163200,11.91,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,344.47046 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,623.6 +,3163200,11.91,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,663.6709 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1397.1 +,3163200,11.91,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3857.0054 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3776.7 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55004.1 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13452.1 +,3163200,11.91,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3209.2944 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3337.6 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,219.4 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8478.7 +,3163200,11.91,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1729.0024 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2071.8 +,3163200,11.91,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4891.7466 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5323.2 +,3163200,11.91,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6950.5894 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6452.2 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3945.0 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,680.8 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,2.7 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56021.0 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,960137.4 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,976672.4 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,956822.0 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,457118.94 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,443985.44 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,612696.44 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,16535.0 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1047.1 +,3163200,11.91,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,256895.17 +,3163200,11.91,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,539458.06 +,3163200,11.91,Typically Developing Children,Male,121,117,120,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3163200,11.91,Typically Developing Children,Male,121,117,120,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,493143.4 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,916.3 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2233.1 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3170319,9.52,ADHD-Combined,Female,122,125,112,http://purl.org/nidash/fsl#,Background (mm^3),,,1.306349E7 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1024431.0 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1000286.0 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1000504.8 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17762.2 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,742.8 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,329.2 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,350.0 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,335.9 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,714.6 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,801.2 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1341300.5 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,150808.2 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,247572.25 +,3170319,9.52,ADHD-Combined,Female,122,125,112,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,308.00305 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,630.9 +,3170319,9.52,ADHD-Combined,Female,122,125,112,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1036.0103 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1331.6 +,3170319,9.52,ADHD-Combined,Female,122,125,112,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3340.033 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3623.6 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,50773.3 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12285.1 +,3170319,9.52,ADHD-Combined,Female,122,125,112,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3354.0332 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3381.6 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,567.7 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,10656.5 +,3170319,9.52,ADHD-Combined,Female,122,125,112,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1492.0148 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1624.7 +,3170319,9.52,ADHD-Combined,Female,122,125,112,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4137.041 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4723.7 +,3170319,9.52,ADHD-Combined,Female,122,125,112,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7860.0776 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7453.0 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3618.4 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,617.0 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,29.9 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1405589.0 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,151.2 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,160173.2 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,255684.16 +,3170319,9.52,ADHD-Combined,Female,122,125,112,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,363.0036 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,556.5 +,3170319,9.52,ADHD-Combined,Female,122,125,112,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,812.00806 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1435.1 +,3170319,9.52,ADHD-Combined,Female,122,125,112,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3664.0361 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3713.0 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55647.8 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12035.0 +,3170319,9.52,ADHD-Combined,Female,122,125,112,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3534.035 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3473.0 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,330.0 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8132.8 +,3170319,9.52,ADHD-Combined,Female,122,125,112,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1540.0153 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1402.2 +,3170319,9.52,ADHD-Combined,Female,122,125,112,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4471.0444 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4886.4 +,3170319,9.52,ADHD-Combined,Female,122,125,112,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7928.0786 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7442.0 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3664.2 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,394.6 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,22.4 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,54990.0 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,870757.8 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,891038.8 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,868948.0 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,310981.4 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,503256.4 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,665703.44 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,20281.0 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1068.7 +,3170319,9.52,ADHD-Combined,Female,122,125,112,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,182613.8 +,3170319,9.52,ADHD-Combined,Female,122,125,112,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,613589.06 +,3170319,9.52,ADHD-Combined,Female,122,125,112,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3170319,9.52,ADHD-Combined,Female,122,125,112,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,455440.53 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,908.5 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2042.3 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3174224,8.49,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1105372E7 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1210600.0 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1195797.0 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1195773.8 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18798.9 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1019.1 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,739.1 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,764.9 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,545.8 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,906.9 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1001.3 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1515147.4 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,232220.36 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,262212.78 +,3174224,8.49,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,798.0011 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,794.9 +,3174224,8.49,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,934.9913 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1469.8 +,3174224,8.49,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3890.2554 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3764.9 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60350.2 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15397.2 +,3174224,8.49,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3157.4243 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3649.6 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,521.0 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5811.2 +,3174224,8.49,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1820.7725 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2003.7 +,3174224,8.49,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6022.248 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5859.2 +,3174224,8.49,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8756.732 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8391.2 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4549.1 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,481.3 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,32.6 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1631712.0 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,198.9 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,235036.6 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,260354.98 +,3174224,8.49,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,578.5508 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,644.2 +,3174224,8.49,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,863.1712 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1755.1 +,3174224,8.49,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3898.2354 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3728.9 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55327.7 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12456.9 +,3174224,8.49,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3708.0452 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3669.3 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,680.7 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3570.4 +,3174224,8.49,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1985.6927 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1886.4 +,3174224,8.49,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5894.5684 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5829.7 +,3174224,8.49,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9183.663 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8163.4 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4424.5 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,444.3 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,34.4 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62880.0 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1054985.8 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1065976.8 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1052571.0 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,467256.94 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,522567.75 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,701233.75 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10991.0 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1228.8 +,3174224,8.49,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,211716.34 +,3174224,8.49,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,649513.06 +,3174224,8.49,ADHD-Combined,Male,99,88,109,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3174224,8.49,ADHD-Combined,Male,99,88,109,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,524733.6 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,973.6 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2485.1 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,http://purl.org/nidash/fsl#,Background (mm^3),,,9321279.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1305052.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1287445.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1288156.2 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19290.1 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,699.9 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,819.8 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,803.4 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,656.8 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1051.5 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,942.4 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1607883.5 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,237329.28 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,303380.88 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,575.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,606.5 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1200.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1820.4 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3817.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4552.5 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57842.2 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14450.1 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3804.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3705.4 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,584.8 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5953.9 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1902.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2215.8 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5878.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6094.6 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8171.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8126.7 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3986.8 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,511.4 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,30.4 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1717393.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,177.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,237328.1 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,302351.06 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,362.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,572.9 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,835.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2134.2 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4769.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4642.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56741.5 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14336.8 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3579.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3883.2 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,988.1 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5101.3 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1902.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1919.1 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5811.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6112.9 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7764.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7692.5 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4033.4 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,551.2 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,51.8 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63551.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1147224.2 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1160555.2 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1143167.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,474657.38 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,605731.94 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,785387.94 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13331.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,811.3 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,230967.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,726812.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3194757,12.92,ADHD-Inattentive,Male,95,92,97,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,588776.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,875.2 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1655.2 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,http://purl.org/nidash/fsl#,Background (mm^3),,,9328428.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1131312.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1117908.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1118470.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18576.7 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,800.8 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,857.5 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,751.3 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,621.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,964.1 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,851.9 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1428651.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,206640.78 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,259477.61 +,3205761,14.58,ADHD-Combined,Male,106,80,126,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,515.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,576.9 +,3205761,14.58,ADHD-Combined,Male,106,80,126,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1136.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1568.6 +,3205761,14.58,ADHD-Combined,Male,106,80,126,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3453.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3470.4 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54640.1 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10977.1 +,3205761,14.58,ADHD-Combined,Male,106,80,126,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2999.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3793.9 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,409.1 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3927.5 +,3205761,14.58,ADHD-Combined,Male,106,80,126,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1776.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1930.2 +,3205761,14.58,ADHD-Combined,Male,106,80,126,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4962.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5102.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7515.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7382.1 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3991.8 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,296.1 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,8.1 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1518745.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,124.5 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,205908.17 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,259526.44 +,3205761,14.58,ADHD-Combined,Male,106,80,126,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,330.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,454.9 +,3205761,14.58,ADHD-Combined,Male,106,80,126,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,789.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1878.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3642.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3708.2 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54009.1 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10262.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2840.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3793.8 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,482.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4884.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1656.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1886.6 +,3205761,14.58,ADHD-Combined,Male,106,80,126,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4663.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5145.2 +,3205761,14.58,ADHD-Combined,Male,106,80,126,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6944.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7290.1 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4529.8 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,495.8 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.3 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58077.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,990985.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1001086.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,988977.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,412548.94 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,519004.06 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,685640.06 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10101.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,547.8 +,3205761,14.58,ADHD-Combined,Male,106,80,126,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,220614.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,677165.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3205761,14.58,ADHD-Combined,Male,106,80,126,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,526132.0 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,832.1 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2340.2 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1349162.0 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1336924.0 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1336707.4 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22863.3 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,974.1 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,1047.8 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,925.3 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,615.2 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,950.6 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,755.7 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1483904.4 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,266916.56 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,300115.2 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,575.5 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1808.9 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4353.4 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54635.6 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15576.4 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4052.8 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,268.8 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4001.7 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2706.2 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6985.0 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8529.9 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4772.0 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,104.5 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1712647.0 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,73.8 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,263914.44 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,297107.22 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,591.8 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1876.3 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4534.1 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55221.3 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14870.2 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3934.7 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,335.9 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4065.7 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2672.7 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6886.9 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7957.6 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4774.7 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,214.9 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,13.9 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68220.0 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1199217.4 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1207676.4 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1196425.0 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,530831.0 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,597222.4 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,776234.4 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8459.0 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1554.5 +,3224401,12.92,Typically Developing Children,Male,110,100,117,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,737.6 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1228.6 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3235580,8.61,ADHD-Combined,Female,117,107,123,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1120105E7 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,963489.0 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,954916.0 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,954732.9 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,13763.1 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,672.6 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,525.5 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,435.2 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,256.8 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,474.0 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,574.9 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1181165.4 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,145579.75 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,243812.02 +,3235580,8.61,ADHD-Combined,Female,117,107,123,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,275.31036 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,506.8 +,3235580,8.61,ADHD-Combined,Female,117,107,123,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,742.141 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1205.2 +,3235580,8.61,ADHD-Combined,Female,117,107,123,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2895.414 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2604.3 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54498.3 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11429.1 +,3235580,8.61,ADHD-Combined,Female,117,107,123,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2501.7334 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3219.8 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,426.0 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2569.4 +,3235580,8.61,ADHD-Combined,Female,117,107,123,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1345.9619 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1638.8 +,3235580,8.61,ADHD-Combined,Female,117,107,123,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4670.9663 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4516.9 +,3235580,8.61,ADHD-Combined,Female,117,107,123,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6304.2085 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,5481.0 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3160.9 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,252.0 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1272762.0 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,97.0 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,146155.69 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,241800.4 +,3235580,8.61,ADHD-Combined,Female,117,107,123,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,293.93042 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,509.6 +,3235580,8.61,ADHD-Combined,Female,117,107,123,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,726.181 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1492.5 +,3235580,8.61,ADHD-Combined,Female,117,107,123,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2952.604 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3029.4 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53719.6 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11051.5 +,3235580,8.61,ADHD-Combined,Female,117,107,123,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2973.884 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3197.3 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,320.5 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2679.8 +,3235580,8.61,ADHD-Combined,Female,117,107,123,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1373.8918 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1400.7 +,3235580,8.61,ADHD-Combined,Female,117,107,123,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4474.126 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4618.9 +,3235580,8.61,ADHD-Combined,Female,117,107,123,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,5228.2373 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,5815.1 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,2898.5 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,390.4 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,47299.0 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,827089.9 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,833248.9 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,824721.0 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,291735.44 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,485612.44 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,640767.44 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6159.0 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,974.0 +,3235580,8.61,ADHD-Combined,Female,117,107,123,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,136592.52 +,3235580,8.61,ADHD-Combined,Female,117,107,123,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,655850.5 +,3235580,8.61,ADHD-Combined,Female,117,107,123,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3235580,8.61,ADHD-Combined,Female,117,107,123,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,363573.28 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,909.8 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1377.9 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3243657,8.56,Typically Developing Children,Female,99,99,100,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1112862E7 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1070168.0 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1057804.0 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1057768.9 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18910.5 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,840.1 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,510.6 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,473.6 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,478.6 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,778.6 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,804.5 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1305311.1 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,174741.39 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,263131.94 +,3243657,8.56,Typically Developing Children,Female,99,99,100,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,458.85065 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,689.4 +,3243657,8.56,Typically Developing Children,Female,99,99,100,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,869.82117 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1460.8 +,3243657,8.56,Typically Developing Children,Female,99,99,100,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4237.3857 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4100.0 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,50685.6 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11837.2 +,3243657,8.56,Typically Developing Children,Female,99,99,100,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3000.4841 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3822.8 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,388.1 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4395.0 +,3243657,8.56,Typically Developing Children,Female,99,99,100,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1631.9122 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1394.0 +,3243657,8.56,Typically Developing Children,Female,99,99,100,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4676.2866 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4739.2 +,3243657,8.56,Typically Developing Children,Female,99,99,100,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7196.64 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6359.8 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3579.6 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,585.1 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,5.2 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1404436.0 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,103.9 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,176279.45 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,265007.1 +,3243657,8.56,Typically Developing Children,Female,99,99,100,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,485.45068 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,687.0 +,3243657,8.56,Typically Developing Children,Female,99,99,100,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,888.4412 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1413.5 +,3243657,8.56,Typically Developing Children,Female,99,99,100,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4197.486 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4204.4 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,50875.1 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11272.1 +,3243657,8.56,Typically Developing Children,Female,99,99,100,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3177.3743 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3930.6 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,321.4 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3754.3 +,3243657,8.56,Typically Developing Children,Female,99,99,100,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1602.6522 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1469.3 +,3243657,8.56,Typically Developing Children,Female,99,99,100,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4564.5664 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4775.9 +,3243657,8.56,Typically Developing Children,Female,99,99,100,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7014.4297 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6180.2 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3433.7 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,557.0 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.8 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,54134.0 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,935349.9 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,944749.9 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,933226.0 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,351020.84 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,528139.0 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,684813.0 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9400.0 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,978.3 +,3243657,8.56,Typically Developing Children,Female,99,99,100,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,142114.69 +,3243657,8.56,Typically Developing Children,Female,99,99,100,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,634546.56 +,3243657,8.56,Typically Developing Children,Female,99,99,100,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3243657,8.56,Typically Developing Children,Female,99,99,100,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,428405.56 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1415.2 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2975.2 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Background (mm^3),,,9323885.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1297231.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1261483.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1262226.5 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19988.7 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,812.7 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,644.7 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,433.5 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,564.1 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,737.4 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1009.5 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1635282.2 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,213572.03 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,307051.62 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,635.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,671.8 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1117.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1977.4 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4342.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4533.5 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,64355.6 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14037.9 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2714.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4460.1 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,481.5 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,16609.5 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1944.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2027.3 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5506.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5666.3 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7765.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7718.4 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4442.4 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,484.6 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,10.7 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1706246.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,159.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,213131.06 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,307712.84 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,468.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,730.2 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1096.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1935.5 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4170.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4817.5 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63106.3 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13816.1 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2459.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,5400.7 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,734.9 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,11569.6 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2065.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1945.9 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5631.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5689.5 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7851.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7446.4 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4628.2 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,707.5 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,20.3 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65549.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1109552.5 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1139984.5 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1106126.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,426703.1 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,614764.44 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,808335.44 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,30432.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1165.5 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,218856.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,773024.0 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,11.6 +,3248920,12.17,Typically Developing Children,Male,-999,-999,-999,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,558457.0 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,973.0 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1655.2 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3277313,12.33,Typically Developing Children,Male,109,121,97,http://purl.org/nidash/fsl#,Background (mm^3),,,1.101116E7 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1218632.0 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1203079.0 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1202903.1 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20598.5 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,816.9 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,893.4 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,808.0 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,615.0 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,830.2 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,900.5 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1588458.6 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,218632.84 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,270165.06 +,3277313,12.33,Typically Developing Children,Male,109,121,97,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,438.57422 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,469.7 +,3277313,12.33,Typically Developing Children,Male,109,121,97,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1130.2734 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1855.8 +,3277313,12.33,Typically Developing Children,Male,109,121,97,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3345.996 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3944.5 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62742.3 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13759.6 +,3277313,12.33,Typically Developing Children,Male,109,121,97,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3612.3047 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4167.6 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,318.5 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6032.1 +,3277313,12.33,Typically Developing Children,Male,109,121,97,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1888.7695 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2130.3 +,3277313,12.33,Typically Developing Children,Male,109,121,97,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5247.0703 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5812.7 +,3277313,12.33,Typically Developing Children,Male,109,121,97,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8234.473 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7927.7 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4569.6 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,396.7 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,4.9 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1648258.0 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,52.5 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,221026.84 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,272898.34 +,3277313,12.33,Typically Developing Children,Male,109,121,97,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,304.10156 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,404.0 +,3277313,12.33,Typically Developing Children,Male,109,121,97,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1110.9375 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1872.3 +,3277313,12.33,Typically Developing Children,Male,109,121,97,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3694.9219 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3792.9 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59499.1 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,20330.1 +,3277313,12.33,Typically Developing Children,Male,109,121,97,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4254.785 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4567.0 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,250.7 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5328.7 +,3277313,12.33,Typically Developing Children,Male,109,121,97,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1864.1602 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2038.3 +,3277313,12.33,Typically Developing Children,Male,109,121,97,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5092.383 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5484.5 +,3277313,12.33,Typically Developing Children,Male,109,121,97,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7821.3867 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7639.9 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4165.6 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,264.0 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,6.4 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62558.0 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1048927.1 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1060995.1 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1045415.0 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,439659.7 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,543063.44 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,729535.44 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12068.0 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,692.3 +,3277313,12.33,Typically Developing Children,Male,109,121,97,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,209616.5 +,3277313,12.33,Typically Developing Children,Male,109,121,97,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,700188.56 +,3277313,12.33,Typically Developing Children,Male,109,121,97,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3277313,12.33,Typically Developing Children,Male,109,121,97,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,546699.9 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,903.4 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1877.6 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1520232E7 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1148563.0 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1127910.0 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1127339.4 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20515.8 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,925.6 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,614.9 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,609.9 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,551.3 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,941.1 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1142.6 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1407128.1 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,218253.14 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,237534.2 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,114.25 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,356.1 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,62.0 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1536.0 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,724.5 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3485.3 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62271.9 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14757.7 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,653.0 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3918.5 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,288.0 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8328.0 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,0.25 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1912.5 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,629.0 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4922.9 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,2456.0 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7817.5 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4100.5 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,591.8 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,30.2 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1532449.0 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,149.1 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,223072.1 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,237215.97 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,161.0 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,488.4 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1114.75 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1805.2 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,1201.0 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3957.1 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62649.2 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13000.7 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2444.25 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3962.3 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,196.3 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7010.8 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,412.5 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2086.0 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,607.0 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5004.2 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,3525.0 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7506.0 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3619.7 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,542.8 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58659.0 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,977395.4 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,994164.4 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,975188.0 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,441325.22 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,474750.16 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,659580.2 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,16769.0 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1942.7 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,210001.25 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,646777.25 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,8.0 +,3291029,14.83,ADHD-Inattentive,Male,87,86,90,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,543785.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,924.2 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1816.1 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,http://purl.org/nidash/fsl#,Background (mm^3),,,9326933.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1210831.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1198467.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1199352.5 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17463.5 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,561.1 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,595.3 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,399.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,296.9 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,596.4 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,810.2 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1507739.8 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,197639.16 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,306972.25 +,3308331,9.08,Typically Developing Children,Male,112,111,111,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,383.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,470.5 +,3308331,9.08,Typically Developing Children,Male,112,111,111,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,829.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1533.1 +,3308331,9.08,Typically Developing Children,Male,112,111,111,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2501.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3385.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56140.1 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11665.6 +,3308331,9.08,Typically Developing Children,Male,112,111,111,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4116.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3895.1 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,302.7 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3907.7 +,3308331,9.08,Typically Developing Children,Male,112,111,111,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1620.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1868.6 +,3308331,9.08,Typically Developing Children,Male,112,111,111,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4783.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4858.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7829.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7958.7 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3628.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,459.1 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,18.5 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1538334.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,194.1 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,197504.72 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,308002.4 +,3308331,9.08,Typically Developing Children,Male,112,111,111,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,348.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,537.9 +,3308331,9.08,Typically Developing Children,Male,112,111,111,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1525.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1537.8 +,3308331,9.08,Typically Developing Children,Male,112,111,111,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2741.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3438.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54229.2 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11211.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3937.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4099.9 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,329.9 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3615.6 +,3308331,9.08,Typically Developing Children,Male,112,111,111,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1652.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1922.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4822.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4575.4 +,3308331,9.08,Typically Developing Children,Male,112,111,111,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7629.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7691.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3550.4 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,637.4 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,17.4 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56139.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1068392.5 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1077301.5 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1065258.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,395143.88 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,614974.7 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,782024.7 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8909.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,865.7 +,3308331,9.08,Typically Developing Children,Male,112,111,111,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,183300.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,746103.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,1.0 +,3308331,9.08,Typically Developing Children,Male,112,111,111,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,492812.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,919.3 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2280.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3056763E7 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1292269.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1278322.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1278626.5 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17080.4 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,822.4 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,571.1 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,444.7 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,428.9 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,741.7 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,756.3 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1540865.2 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,211047.4 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,322348.12 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,644.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,714.9 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1004.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1652.1 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3966.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3987.5 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58312.1 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11978.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3944.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4487.4 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,320.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5175.3 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1621.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1954.9 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5593.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6230.8 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8350.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8394.1 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4054.2 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,456.4 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,3.4 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1644206.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,136.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,213237.34 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,328380.66 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,470.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,701.7 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,968.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1848.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4305.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4154.7 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57636.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10673.4 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4116.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4423.5 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,571.7 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3231.4 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1684.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1593.6 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5743.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5925.7 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8029.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7590.6 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4461.5 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,614.2 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,7.8 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64208.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1142613.5 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1152627.5 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1138791.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,424284.75 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,650728.75 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,832661.75 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10014.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,885.9 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,182644.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,775517.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3310328,9.97,ADHD-Hyperactive/Impulsive,Male,113,123,110,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,503345.0 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,901.5 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1330.5 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1108505E7 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1159329.0 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1148377.0 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1148242.5 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17305.7 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,950.2 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,754.2 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,519.1 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,514.8 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,799.6 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1054.6 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1253944.8 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,204292.31 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,284383.5 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,614.4608 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,773.7 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,920.36127 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1500.7 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3652.185 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3397.9 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,48475.5 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11465.9 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4285.266 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3870.2 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,358.7 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3278.9 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1715.7024 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1510.7 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5559.4077 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5402.4 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7878.9307 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7426.9 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3943.8 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,482.5 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,8.0 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1582248.0 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,154.4 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,207677.06 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,283424.62 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,543.97076 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,733.7 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1040.0614 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1535.5 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3791.8352 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3794.6 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,41183.6 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,9688.8 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3190.6743 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3592.0 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,653.4 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3092.8 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1701.0724 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1520.4 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5555.4175 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5275.1 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7909.521 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7481.8 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3954.3 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,525.5 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,10.0 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57709.0 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1039642.5 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1047487.5 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1037483.0 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,411969.38 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,567808.1 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,716023.1 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7845.0 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,699.7 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,166449.73 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,683402.8 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3349205,10.21,ADHD-Inattentive,Female,100,97,104,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,461551.88 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1349.1 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2166.5 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3349423,12.59,Typically Developing Children,Male,124,120,121,http://purl.org/nidash/fsl#,Background (mm^3),,,1.109874E7 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1485807.0 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1456522.0 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1456594.0 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22873.9 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1130.8 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,547.4 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,465.0 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,631.6 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1027.9 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1074.6 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1872070.1 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,268434.22 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,338208.72 +,3349423,12.59,Typically Developing Children,Male,124,120,121,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,383.04053 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,898.1 +,3349423,12.59,Typically Developing Children,Male,124,120,121,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,756.77106 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1895.3 +,3349423,12.59,Typically Developing Children,Male,124,120,121,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,5393.157 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,5370.6 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,69124.4 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15524.0 +,3349423,12.59,Typically Developing Children,Male,124,120,121,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3634.895 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4659.6 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,533.6 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,14339.8 +,3349423,12.59,Typically Developing Children,Male,124,120,121,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2242.383 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2343.4 +,3349423,12.59,Typically Developing Children,Male,124,120,121,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6111.3584 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6546.2 +,3349423,12.59,Typically Developing Children,Male,124,120,121,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9580.003 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8899.7 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4840.0 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,488.1 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,30.1 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1964770.0 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,132.7 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,268762.88 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,338215.2 +,3349423,12.59,Typically Developing Children,Male,124,120,121,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,760.76105 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,870.7 +,3349423,12.59,Typically Developing Children,Male,124,120,121,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1234.2417 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2413.7 +,3349423,12.59,Typically Developing Children,Male,124,120,121,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5532.8076 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5654.5 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,68920.2 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15781.9 +,3349423,12.59,Typically Developing Children,Male,124,120,121,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3882.2754 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,5041.9 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,620.5 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8814.2 +,3349423,12.59,Typically Developing Children,Male,124,120,121,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2332.8232 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2227.9 +,3349423,12.59,Typically Developing Children,Male,124,120,121,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6443.859 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6557.8 +,3349423,12.59,Typically Developing Children,Male,124,120,121,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9835.363 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8649.8 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4850.3 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,598.8 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,17.7 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,73630.0 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1290713.0 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1315622.0 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1287074.0 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,537197.06 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,676423.9 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,889393.9 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,24909.0 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1388.8 +,3349423,12.59,Typically Developing Children,Male,124,120,121,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,229991.89 +,3349423,12.59,Typically Developing Children,Male,124,120,121,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,828964.9 +,3349423,12.59,Typically Developing Children,Male,124,120,121,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3349423,12.59,Typically Developing Children,Male,124,120,121,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,606718.9 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1898.7 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2402.7 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3385520,13.5,Typically Developing Children,Male,114,123,104,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1527694E7 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1265313.0 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1241632.0 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1241310.2 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22926.4 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,794.6 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,531.1 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,601.3 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,645.0 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,805.7 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,869.2 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1329990.2 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,228877.03 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,279663.44 +,3385520,13.5,Typically Developing Children,Male,114,123,104,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,57.25 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,465.0 +,3385520,13.5,Typically Developing Children,Male,114,123,104,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,182.75 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1617.3 +,3385520,13.5,Typically Developing Children,Male,114,123,104,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,572.75 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3996.3 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,65298.7 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14810.1 +,3385520,13.5,Typically Developing Children,Male,114,123,104,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,570.0 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4018.9 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,647.0 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,9138.1 +,3385520,13.5,Typically Developing Children,Male,114,123,104,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,223.5 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2377.4 +,3385520,13.5,Typically Developing Children,Male,114,123,104,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,307.0 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6240.6 +,3385520,13.5,Typically Developing Children,Male,114,123,104,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,1132.75 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8282.8 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4673.9 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,590.0 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,24.9 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1647016.0 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,160.6 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,226159.34 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,283173.44 +,3385520,13.5,Typically Developing Children,Male,114,123,104,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,14.75 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,575.8 +,3385520,13.5,Typically Developing Children,Male,114,123,104,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,312.0 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1822.5 +,3385520,13.5,Typically Developing Children,Male,114,123,104,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,1104.75 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4201.0 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,65049.4 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13626.8 +,3385520,13.5,Typically Developing Children,Male,114,123,104,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,994.25 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4336.8 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,829.1 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7165.0 +,3385520,13.5,Typically Developing Children,Male,114,123,104,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,95.5 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2205.6 +,3385520,13.5,Typically Developing Children,Male,114,123,104,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,138.25 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6149.7 +,3385520,13.5,Typically Developing Children,Male,114,123,104,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,936.0 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8473.1 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4758.2 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,584.9 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,20.4 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65884.0 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1085430.2 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1104069.2 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1083954.0 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,455036.38 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,562836.9 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,759243.9 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,18639.0 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,855.0 +,3385520,13.5,Typically Developing Children,Male,114,123,104,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,285835.0 +,3385520,13.5,Typically Developing Children,Male,114,123,104,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,731746.5 +,3385520,13.5,Typically Developing Children,Male,114,123,104,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,1.6 +,3385520,13.5,Typically Developing Children,Male,114,123,104,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,626577.75 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1089.4 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2747.1 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3433846,10.36,ADHD-Combined,Male,102,97,107,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1110426E7 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1227287.0 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1212994.0 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1213273.6 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18342.7 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,603.5 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,600.9 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,417.1 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,544.8 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,755.2 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,872.3 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1494403.0 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,213606.2 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,283973.84 +,3433846,10.36,ADHD-Combined,Male,102,97,107,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,360.43048 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,551.8 +,3433846,10.36,ADHD-Combined,Male,102,97,107,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,672.98096 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1748.0 +,3433846,10.36,ADHD-Combined,Male,102,97,107,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3997.9856 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3857.7 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,67137.4 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12674.2 +,3433846,10.36,ADHD-Combined,Male,102,97,107,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3370.2246 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3790.2 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,444.7 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4522.1 +,3433846,10.36,ADHD-Combined,Male,102,97,107,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1758.2625 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2059.2 +,3433846,10.36,ADHD-Combined,Male,102,97,107,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5132.477 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5077.6 +,3433846,10.36,ADHD-Combined,Male,102,97,107,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7707.361 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7966.8 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3514.0 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,367.7 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,10.0 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1617949.0 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,115.5 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,212551.08 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,286701.53 +,3433846,10.36,ADHD-Combined,Male,102,97,107,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,573.2308 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,675.5 +,3433846,10.36,ADHD-Combined,Male,102,97,107,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,728.841 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1717.0 +,3433846,10.36,ADHD-Combined,Male,102,97,107,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4238.716 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4086.6 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,65111.9 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12417.7 +,3433846,10.36,ADHD-Combined,Male,102,97,107,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3896.9053 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3993.2 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,502.0 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4106.0 +,3433846,10.36,ADHD-Combined,Male,102,97,107,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1766.2424 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1841.8 +,3433846,10.36,ADHD-Combined,Male,102,97,107,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4952.927 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5026.1 +,3433846,10.36,ADHD-Combined,Male,102,97,107,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7281.7603 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7908.2 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3682.1 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,431.1 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,13.8 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59659.0 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1059272.6 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1069114.6 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1056096.0 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,426157.28 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,570675.4 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,763162.4 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9842.0 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1579.0 +,3433846,10.36,ADHD-Combined,Male,102,97,107,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,175206.47 +,3433846,10.36,ADHD-Combined,Male,102,97,107,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,688283.94 +,3433846,10.36,ADHD-Combined,Male,102,97,107,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3433846,10.36,ADHD-Combined,Male,102,97,107,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,473807.84 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,666.2 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1801.8 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3434578,8.12,Typically Developing Children,Female,89,98,85,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3067771E7 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1029502.0 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1017043.0 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1017339.94 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,14951.9 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,924.1 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,457.5 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,563.7 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,587.1 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,809.1 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,547.9 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1207572.4 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,168310.88 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,258474.19 +,3434578,8.12,Typically Developing Children,Female,89,98,85,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,479.00012 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,695.6 +,3434578,8.12,Typically Developing Children,Female,89,98,85,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,732.0002 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1247.3 +,3434578,8.12,Typically Developing Children,Female,89,98,85,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3863.001 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3536.0 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,48900.6 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,9249.2 +,3434578,8.12,Typically Developing Children,Female,89,98,85,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2499.0005 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3116.7 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,205.2 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4812.9 +,3434578,8.12,Typically Developing Children,Female,89,98,85,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1464.0004 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1511.0 +,3434578,8.12,Typically Developing Children,Female,89,98,85,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4226.001 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4767.9 +,3434578,8.12,Typically Developing Children,Female,89,98,85,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6828.0015 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6848.4 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3058.1 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,384.6 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,33.1 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1303889.0 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,161.9 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,167247.89 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,257736.98 +,3434578,8.12,Typically Developing Children,Female,89,98,85,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,329.0001 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,594.3 +,3434578,8.12,Typically Developing Children,Female,89,98,85,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,753.0002 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1315.8 +,3434578,8.12,Typically Developing Children,Female,89,98,85,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4020.001 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4008.5 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,47024.7 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,8508.6 +,3434578,8.12,Typically Developing Children,Female,89,98,85,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2199.0005 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3260.6 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,341.5 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3794.3 +,3434578,8.12,Typically Developing Children,Female,89,98,85,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1426.0004 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1636.2 +,3434578,8.12,Typically Developing Children,Female,89,98,85,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4120.001 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4618.7 +,3434578,8.12,Typically Developing Children,Female,89,98,85,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6494.0015 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6760.7 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3326.6 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,419.7 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.8 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,52217.0 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,905570.94 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,915133.94 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,903554.0 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,335558.78 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,516211.2 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,665033.2 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9563.0 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,669.2 +,3434578,8.12,Typically Developing Children,Female,89,98,85,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,114826.03 +,3434578,8.12,Typically Developing Children,Female,89,98,85,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,554149.1 +,3434578,8.12,Typically Developing Children,Female,89,98,85,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3434578,8.12,Typically Developing Children,Female,89,98,85,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,372016.1 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1105.9 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2927.1 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1105168E7 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1333948.0 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1304048.0 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1303707.2 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18819.8 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1318.5 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,530.4 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,690.5 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,554.9 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,800.9 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1088.6 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1656715.5 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,221214.5 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,307841.88 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,352.4505 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,662.8 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,845.88116 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1343.6 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4158.9155 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4266.7 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,74433.4 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16477.8 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3192.0044 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3751.6 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,828.2 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,14124.0 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2037.5627 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2313.0 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6050.178 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5797.3 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8960.223 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8467.4 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4449.2 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,394.6 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1778557.0 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,135.7 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,224394.3 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,313209.62 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,496.0907 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,733.0 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,743.471 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1536.2 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4438.2163 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4305.5 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,69350.7 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13363.7 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3634.895 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4179.9 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,525.8 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,9033.0 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2058.8428 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2213.3 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6011.6084 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5641.7 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8715.502 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8207.6 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4286.3 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,519.0 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64203.0 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1133891.2 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1158928.2 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1131061.0 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,445608.78 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,621051.5 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,829222.5 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,25037.0 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1166.1 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,195499.62 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,784255.5 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3441455,9.26,ADHD-Inattentive,Male,128,116,135,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,504318.06 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1400.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1627.1 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,http://purl.org/nidash/fsl#,Background (mm^3),,,9323514.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1307294.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1289231.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1290319.2 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21586.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,884.8 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,762.2 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,745.4 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,454.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,742.8 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,840.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1658298.9 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,231760.66 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,300964.75 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,461.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,599.6 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1487.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1946.1 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3080.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3688.7 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63752.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14543.1 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2248.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4695.3 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,393.9 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6492.5 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1863.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2196.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5512.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5377.9 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7693.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8807.2 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4687.4 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,236.2 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.2 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1696875.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,156.6 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,232319.78 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,301317.06 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,334.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,655.4 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1272.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1905.9 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3857.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3753.8 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64390.3 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13789.3 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4461.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4810.6 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,403.2 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6357.2 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1993.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2112.3 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5563.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5678.9 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8310.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8941.7 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4946.3 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,580.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.8 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66498.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1136250.2 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1150448.2 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1131681.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,464080.44 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,602281.8 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,798649.8 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14198.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,965.7 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,209216.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,681034.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3446674,14.58,ADHD-Inattentive,Male,113,98,124,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,562779.0 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,884.6 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1858.1 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3457975,7.86,ADHD-Combined,Female,128,126,123,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1121921E7 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1023299.0 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1008119.0 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1007756.94 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15665.6 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1077.2 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,489.3 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,568.9 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,572.5 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,847.0 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,754.8 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1190250.8 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,164939.67 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,242607.31 +,3457975,7.86,ADHD-Combined,Female,128,126,123,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,376.3905 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,578.5 +,3457975,7.86,ADHD-Combined,Female,128,126,123,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,473.48065 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1115.1 +,3457975,7.86,ADHD-Combined,Female,128,126,123,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2860.834 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3616.9 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54471.2 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13411.1 +,3457975,7.86,ADHD-Combined,Female,128,126,123,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2636.0637 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3336.3 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,813.9 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5465.8 +,3457975,7.86,ADHD-Combined,Female,128,126,123,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1303.4019 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1750.7 +,3457975,7.86,ADHD-Combined,Female,128,126,123,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,3696.0752 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4935.7 +,3457975,7.86,ADHD-Combined,Female,128,126,123,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,5998.308 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6688.9 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3436.2 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,451.4 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,18.8 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1345198.0 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,149.0 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,164605.25 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,249340.67 +,3457975,7.86,ADHD-Combined,Female,128,126,123,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,148.9602 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,567.8 +,3457975,7.86,ADHD-Combined,Female,128,126,123,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,279.30038 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1277.2 +,3457975,7.86,ADHD-Combined,Female,128,126,123,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3609.625 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3715.5 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53823.2 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12401.1 +,3457975,7.86,ADHD-Combined,Female,128,126,123,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2548.2834 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3442.6 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,405.4 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4840.0 +,3457975,7.86,ADHD-Combined,Female,128,126,123,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1275.4718 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1583.8 +,3457975,7.86,ADHD-Combined,Female,128,126,123,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,3976.7056 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5158.4 +,3457975,7.86,ADHD-Combined,Female,128,126,123,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,5760.238 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6533.2 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3413.6 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,396.6 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,13.9 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,52831.0 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,877121.94 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,888998.94 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,874563.0 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,329544.94 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,491948.0 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,652909.0 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11877.0 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,582.8 +,3457975,7.86,ADHD-Combined,Female,128,126,123,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,140613.11 +,3457975,7.86,ADHD-Combined,Female,128,126,123,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,610485.5 +,3457975,7.86,ADHD-Combined,Female,128,126,123,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3457975,7.86,ADHD-Combined,Female,128,126,123,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,389080.06 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1068.8 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1133.2 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3473830,12.67,Typically Developing Children,Male,128,121,128,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1439709E7 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1329629.0 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1306229.0 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1306340.8 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20501.2 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1186.7 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,744.2 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,698.9 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,726.7 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1017.4 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1079.3 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1547550.1 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,243275.33 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,307468.03 +,3473830,12.67,Typically Developing Children,Male,128,121,128,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,239.5 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,534.7 +,3473830,12.67,Typically Developing Children,Male,128,121,128,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,2823.0 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1741.5 +,3473830,12.67,Typically Developing Children,Male,128,121,128,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,6703.75 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4721.6 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57675.9 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12230.2 +,3473830,12.67,Typically Developing Children,Male,128,121,128,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,6383.75 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4516.4 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,506.7 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,9360.6 +,3473830,12.67,Typically Developing Children,Male,128,121,128,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2719.0 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2313.0 +,3473830,12.67,Typically Developing Children,Male,128,121,128,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,9485.5 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5808.4 +,3473830,12.67,Typically Developing Children,Male,128,121,128,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,19107.5 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8562.8 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4588.4 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,581.5 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,18.2 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1719559.0 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,159.3 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,241095.39 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,306535.0 +,3473830,12.67,Typically Developing Children,Male,128,121,128,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,457.5 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,574.3 +,3473830,12.67,Typically Developing Children,Male,128,121,128,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,4254.5 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1753.5 +,3473830,12.67,Typically Developing Children,Male,128,121,128,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,6567.75 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4628.5 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56798.3 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12872.4 +,3473830,12.67,Typically Developing Children,Male,128,121,128,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,8938.5 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4813.3 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,380.2 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,9003.2 +,3473830,12.67,Typically Developing Children,Male,128,121,128,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2114.25 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2267.6 +,3473830,12.67,Typically Developing Children,Male,128,121,128,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,7715.25 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5787.6 +,3473830,12.67,Typically Developing Children,Male,128,121,128,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,17117.25 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9111.7 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4585.9 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,707.1 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68201.0 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1168627.8 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1188787.8 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1166322.0 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,484370.72 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,614003.06 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,797841.06 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,20160.0 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,675.0 +,3473830,12.67,Typically Developing Children,Male,128,121,128,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,242100.75 +,3473830,12.67,Typically Developing Children,Male,128,121,128,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,785689.0 +,3473830,12.67,Typically Developing Children,Male,128,121,128,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3473830,12.67,Typically Developing Children,Male,128,121,128,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,629979.75 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,787.2 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,3278.1 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3486975,11.73,Typically Developing Children,Female,117,121,108,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3057584E7 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1193105.0 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1176344.0 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1176692.0 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18157.0 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,750.7 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,401.5 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,415.9 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,533.2 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,891.5 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,635.2 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1481838.0 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,207776.16 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,285956.66 +,3486975,11.73,Typically Developing Children,Female,117,121,108,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,496.0052 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,861.0 +,3486975,11.73,Typically Developing Children,Female,117,121,108,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1475.0155 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1813.8 +,3486975,11.73,Typically Developing Children,Female,117,121,108,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4445.0464 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4277.9 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,50390.9 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11369.5 +,3486975,11.73,Typically Developing Children,Female,117,121,108,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3768.0396 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3971.9 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,362.9 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5437.8 +,3486975,11.73,Typically Developing Children,Female,117,121,108,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1781.0187 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1756.3 +,3486975,11.73,Typically Developing Children,Female,117,121,108,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4664.049 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4929.6 +,3486975,11.73,Typically Developing Children,Female,117,121,108,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8366.088 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7537.6 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3812.5 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,395.1 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.0 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1547510.0 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,191.1 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,211006.06 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,289324.1 +,3486975,11.73,Typically Developing Children,Female,117,121,108,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,446.00467 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,747.0 +,3486975,11.73,Typically Developing Children,Female,117,121,108,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1467.0154 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1702.2 +,3486975,11.73,Typically Developing Children,Female,117,121,108,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4485.047 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4505.4 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,50538.8 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11428.0 +,3486975,11.73,Typically Developing Children,Female,117,121,108,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4266.045 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4184.0 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,330.7 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5621.8 +,3486975,11.73,Typically Developing Children,Female,117,121,108,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1736.0182 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1600.6 +,3486975,11.73,Typically Developing Children,Female,117,121,108,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4613.0483 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4818.6 +,3486975,11.73,Typically Developing Children,Female,117,121,108,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7745.081 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7310.5 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4046.4 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,606.3 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,30.5 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59525.0 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1054936.0 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1067175.0 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1053092.0 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,418782.22 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,575280.75 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,736355.75 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12239.0 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,796.9 +,3486975,11.73,Typically Developing Children,Female,117,121,108,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,192074.02 +,3486975,11.73,Typically Developing Children,Female,117,121,108,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,619289.5 +,3486975,11.73,Typically Developing Children,Female,117,121,108,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3486975,11.73,Typically Developing Children,Female,117,121,108,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,476020.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,896.6 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2751.3 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,http://purl.org/nidash/fsl#,Background (mm^3),,,9318613.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1312083.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1297822.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1298786.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19644.8 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,714.3 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,859.9 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,634.7 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,549.2 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,954.9 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,883.7 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1628341.1 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,222914.61 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,315707.06 +,3494778,9.17,Typically Developing Children,Male,153,135,158,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,813.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,790.7 +,3494778,9.17,Typically Developing Children,Male,153,135,158,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1089.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1745.1 +,3494778,9.17,Typically Developing Children,Male,153,135,158,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4383.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4438.6 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60615.7 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14006.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3789.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3908.1 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,668.1 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4533.4 +,3494778,9.17,Typically Developing Children,Male,153,135,158,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1951.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2062.8 +,3494778,9.17,Typically Developing Children,Male,153,135,158,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5969.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6283.8 +,3494778,9.17,Typically Developing Children,Male,153,135,158,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8525.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8904.6 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4136.1 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,356.6 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,42.6 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1648891.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,210.7 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,225283.1 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,322013.2 +,3494778,9.17,Typically Developing Children,Male,153,135,158,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,455.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,703.8 +,3494778,9.17,Typically Developing Children,Male,153,135,158,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1361.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1966.1 +,3494778,9.17,Typically Developing Children,Male,153,135,158,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4479.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4232.4 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59179.6 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12651.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4178.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4295.5 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,629.8 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3539.9 +,3494778,9.17,Typically Developing Children,Male,153,135,158,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1933.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1883.6 +,3494778,9.17,Typically Developing Children,Male,153,135,158,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5945.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6383.8 +,3494778,9.17,Typically Developing Children,Male,153,135,158,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8165.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8672.4 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4302.8 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,483.1 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,25.5 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66193.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1154642.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1164500.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1151040.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,448197.7 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,637720.25 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,824754.25 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9858.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1264.2 +,3494778,9.17,Typically Developing Children,Male,153,135,158,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,179834.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,750670.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3494778,9.17,Typically Developing Children,Male,153,135,158,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,552930.0 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,744.3 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1358.9 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3518345,7.67,Typically Developing Children,Female,124,126,119,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1112733E7 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1043712.0 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1033409.0 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1032997.94 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16757.8 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,917.9 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,742.2 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,566.6 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,493.8 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,792.6 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,681.5 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1321460.1 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,172579.25 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,249080.81 +,3518345,7.67,Typically Developing Children,Female,124,126,119,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,667.6609 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,717.5 +,3518345,7.67,Typically Developing Children,Female,124,126,119,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,614.4608 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1288.2 +,3518345,7.67,Typically Developing Children,Female,124,126,119,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4334.476 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4058.8 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55256.2 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12386.0 +,3518345,7.67,Typically Developing Children,Female,124,126,119,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3164.0745 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3479.6 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,243.8 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3378.5 +,3518345,7.67,Typically Developing Children,Female,124,126,119,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1661.1722 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1909.4 +,3518345,7.67,Typically Developing Children,Female,124,126,119,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4995.487 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5114.4 +,3518345,7.67,Typically Developing Children,Female,124,126,119,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7084.92 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6939.2 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3515.2 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,380.4 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1396084.0 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,113.8 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,173892.77 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,248498.12 +,3518345,7.67,Typically Developing Children,Female,124,126,119,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,429.59058 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,728.4 +,3518345,7.67,Typically Developing Children,Female,124,126,119,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,428.2606 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1335.8 +,3518345,7.67,Typically Developing Children,Female,124,126,119,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4374.376 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4301.9 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54397.1 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11580.3 +,3518345,7.67,Typically Developing Children,Female,124,126,119,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3342.2947 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3660.8 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,306.2 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3407.9 +,3518345,7.67,Typically Developing Children,Female,124,126,119,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1529.5021 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1822.4 +,3518345,7.67,Typically Developing Children,Female,124,126,119,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4873.127 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5098.4 +,3518345,7.67,Typically Developing Children,Female,124,126,119,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6631.389 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6916.3 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3417.9 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,451.4 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,7.6 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56058.0 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,902294.94 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,909954.94 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,900407.0 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,346472.0 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,497578.94 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,663492.94 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7660.0 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1298.7 +,3518345,7.67,Typically Developing Children,Female,124,126,119,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,150016.22 +,3518345,7.67,Typically Developing Children,Female,124,126,119,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,665559.5 +,3518345,7.67,Typically Developing Children,Female,124,126,119,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3518345,7.67,Typically Developing Children,Female,124,126,119,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,410298.9 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,677.7 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1991.4 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3519022,8.1,ADHD-Combined,Female,134,129,134,http://purl.org/nidash/fsl#,Background (mm^3),,,1.306116E7 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1094066.0 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1079584.0 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1080082.5 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17116.6 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,771.0 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,439.5 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,430.0 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,430.3 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,734.0 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,744.0 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1266944.0 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,167197.73 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,288845.5 +,3519022,8.1,ADHD-Combined,Female,134,129,134,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,592.9974 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,765.7 +,3519022,8.1,ADHD-Combined,Female,134,129,134,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,811.9964 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1353.8 +,3519022,8.1,ADHD-Combined,Female,134,129,134,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3803.983 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3583.6 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,49668.8 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10388.0 +,3519022,8.1,ADHD-Combined,Female,134,129,134,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3188.9858 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3754.2 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,416.8 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4291.9 +,3519022,8.1,ADHD-Combined,Female,134,129,134,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1568.993 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1599.8 +,3519022,8.1,ADHD-Combined,Female,134,129,134,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5320.976 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5701.5 +,3519022,8.1,ADHD-Combined,Female,134,129,134,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7716.9653 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6945.4 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3510.2 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,511.7 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,50.1 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1366793.0 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,226.0 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,166175.53 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,282586.72 +,3519022,8.1,ADHD-Combined,Female,134,129,134,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,344.99844 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,648.4 +,3519022,8.1,ADHD-Combined,Female,134,129,134,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1108.995 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1393.5 +,3519022,8.1,ADHD-Combined,Female,134,129,134,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3963.9822 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3776.7 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,48977.8 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10294.3 +,3519022,8.1,ADHD-Combined,Female,134,129,134,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3160.9858 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3788.6 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,376.8 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5409.2 +,3519022,8.1,ADHD-Combined,Female,134,129,134,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1571.9929 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1709.6 +,3519022,8.1,ADHD-Combined,Female,134,129,134,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5339.976 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5597.5 +,3519022,8.1,ADHD-Combined,Female,134,129,134,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7485.9663 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6719.3 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3463.7 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,574.6 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,24.3 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56432.0 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,962562.5 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,973715.5 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,960591.0 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,333373.28 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,571432.25 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,726969.25 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11153.0 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,596.9 +,3519022,8.1,ADHD-Combined,Female,134,129,134,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,137406.38 +,3519022,8.1,ADHD-Combined,Female,134,129,134,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,534903.6 +,3519022,8.1,ADHD-Combined,Female,134,129,134,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3519022,8.1,ADHD-Combined,Female,134,129,134,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,374755.34 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,854.3 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1195.3 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3542588,8.05,ADHD-Combined,Female,107,94,98,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1114507E7 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1092129.0 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1077500.0 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1077011.6 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16527.8 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,760.8 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,355.1 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,494.5 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,425.6 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,628.3 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,820.6 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1367738.4 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,183711.92 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,266500.3 +,3542588,8.05,ADHD-Combined,Female,107,94,98,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,448.21063 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,534.9 +,3542588,8.05,ADHD-Combined,Female,107,94,98,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,804.6511 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1220.4 +,3542588,8.05,ADHD-Combined,Female,107,94,98,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3218.6045 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3256.1 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,50467.3 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12038.9 +,3542588,8.05,ADHD-Combined,Female,107,94,98,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3496.5747 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3706.6 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,429.7 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6036.2 +,3542588,8.05,ADHD-Combined,Female,107,94,98,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1392.512 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1711.5 +,3542588,8.05,ADHD-Combined,Female,107,94,98,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4632.3965 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4965.8 +,3542588,8.05,ADHD-Combined,Female,107,94,98,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7054.3296 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6440.8 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3674.1 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,438.4 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,2.0 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1454159.0 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,111.3 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,183523.23 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,264981.22 +,3542588,8.05,ADHD-Combined,Female,107,94,98,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,309.89044 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,593.6 +,3542588,8.05,ADHD-Combined,Female,107,94,98,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1000.1614 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1585.4 +,3542588,8.05,ADHD-Combined,Female,107,94,98,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3673.465 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3538.6 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,51016.9 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11746.0 +,3542588,8.05,ADHD-Combined,Female,107,94,98,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3395.4946 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3642.0 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,423.9 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4553.1 +,3542588,8.05,ADHD-Combined,Female,107,94,98,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1554.7721 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1642.2 +,3542588,8.05,ADHD-Combined,Female,107,94,98,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4611.116 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4869.4 +,3542588,8.05,ADHD-Combined,Female,107,94,98,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6764.389 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6316.9 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3500.1 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,473.3 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,3.0 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,53106.0 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,954632.7 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,966528.7 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,952188.0 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,367235.16 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,531481.5 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,686374.5 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11896.0 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1132.2 +,3542588,8.05,ADHD-Combined,Female,107,94,98,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,163328.22 +,3542588,8.05,ADHD-Combined,Female,107,94,98,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,653443.2 +,3542588,8.05,ADHD-Combined,Female,107,94,98,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3542588,8.05,ADHD-Combined,Female,107,94,98,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,427559.7 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,981.5 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1643.4 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,http://purl.org/nidash/fsl#,Background (mm^3),,,9322565.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1207023.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1194631.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1195044.5 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19418.1 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,697.1 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,568.1 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,555.7 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,406.2 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,835.6 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,785.5 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1591856.9 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,209766.08 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,286202.16 +,3561920,13.75,ADHD-Combined,Male,123,114,126,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,654.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,684.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1174.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1463.3 +,3561920,13.75,ADHD-Combined,Male,123,114,126,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3961.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4075.7 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58519.8 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13663.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3740.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4346.5 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,350.9 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4121.1 +,3561920,13.75,ADHD-Combined,Male,123,114,126,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1644.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2312.4 +,3561920,13.75,ADHD-Combined,Male,123,114,126,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5908.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6430.5 +,3561920,13.75,ADHD-Combined,Male,123,114,126,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7688.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8499.6 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4190.3 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,335.4 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,35.8 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1634631.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,71.7 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,208212.38 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,281189.9 +,3561920,13.75,ADHD-Combined,Male,123,114,126,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,291.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,728.2 +,3561920,13.75,ADHD-Combined,Male,123,114,126,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1096.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1799.9 +,3561920,13.75,ADHD-Combined,Male,123,114,126,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4150.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4294.4 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57966.4 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12477.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3605.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4348.2 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,378.5 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3934.5 +,3561920,13.75,ADHD-Combined,Male,123,114,126,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1845.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2139.7 +,3561920,13.75,ADHD-Combined,Male,123,114,126,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5719.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6424.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7608.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8318.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4228.2 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,464.3 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,21.8 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65799.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1054044.5 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1063165.5 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1050724.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,417978.47 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,567392.06 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,751311.06 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9121.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1292.3 +,3561920,13.75,ADHD-Combined,Male,123,114,126,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,215318.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,684733.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3561920,13.75,ADHD-Combined,Male,123,114,126,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,572577.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1097.5 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,3365.5 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,http://purl.org/nidash/fsl#,Background (mm^3),,,9320155.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1303589.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1283012.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1283849.4 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21549.5 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,862.5 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,489.9 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,425.5 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,441.3 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,802.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,977.9 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1660557.1 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,218701.38 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,314249.66 +,3562883,11.25,Typically Developing Children,Male,111,104,115,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,601.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,649.9 +,3562883,11.25,Typically Developing Children,Male,111,104,115,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1464.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1724.7 +,3562883,11.25,Typically Developing Children,Male,111,104,115,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3915.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4098.7 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63300.4 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12923.7 +,3562883,11.25,Typically Developing Children,Male,111,104,115,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4088.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4936.6 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,615.7 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7027.2 +,3562883,11.25,Typically Developing Children,Male,111,104,115,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1780.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2267.3 +,3562883,11.25,Typically Developing Children,Male,111,104,115,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5467.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5906.4 +,3562883,11.25,Typically Developing Children,Male,111,104,115,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8421.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8375.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4330.9 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,457.6 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,27.1 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1719880.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,176.9 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,217769.12 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,315456.22 +,3562883,11.25,Typically Developing Children,Male,111,104,115,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,485.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,622.7 +,3562883,11.25,Typically Developing Children,Male,111,104,115,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,909.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1759.9 +,3562883,11.25,Typically Developing Children,Male,111,104,115,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4168.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4156.7 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63109.7 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13063.7 +,3562883,11.25,Typically Developing Children,Male,111,104,115,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4370.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4456.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,522.3 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6486.9 +,3562883,11.25,Typically Developing Children,Male,111,104,115,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1791.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2085.1 +,3562883,11.25,Typically Developing Children,Male,111,104,115,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5628.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5689.6 +,3562883,11.25,Typically Developing Children,Male,111,104,115,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8406.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8426.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4271.2 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,567.9 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,35.2 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65472.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1134132.4 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1149418.4 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1130678.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,436470.5 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,629705.9 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,822451.9 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15286.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,560.4 +,3562883,11.25,Typically Developing Children,Male,111,104,115,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,249335.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,764323.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3562883,11.25,Typically Developing Children,Male,111,104,115,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,566932.0 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,691.2 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1363.2 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3601861,9.24,ADHD-Combined,Female,88,82,99,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1116679E7 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1036256.0 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1020239.0 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1020310.8 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,14943.3 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,927.3 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,315.4 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,372.4 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,317.7 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,613.4 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,877.1 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1248934.5 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,157700.61 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,264156.9 +,3601861,9.24,ADHD-Combined,Female,88,82,99,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,578.5475 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,518.8 +,3601861,9.24,ADHD-Combined,Female,88,82,99,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,195.50916 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1314.0 +,3601861,9.24,ADHD-Combined,Female,88,82,99,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3390.1553 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3523.3 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52914.2 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11630.5 +,3601861,9.24,ADHD-Combined,Female,88,82,99,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2315.52 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3203.4 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,454.0 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6877.8 +,3601861,9.24,ADHD-Combined,Female,88,82,99,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1391.174 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1760.1 +,3601861,9.24,ADHD-Combined,Female,88,82,99,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4738.7695 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5135.3 +,3601861,9.24,ADHD-Combined,Female,88,82,99,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6498.3516 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6576.2 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3345.2 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,277.2 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,15.4 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1363761.0 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,158.1 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,155466.66 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,260385.64 +,3601861,9.24,ADHD-Combined,Female,88,82,99,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,309.88864 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,518.5 +,3601861,9.24,ADHD-Combined,Female,88,82,99,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,948.2859 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1505.7 +,3601861,9.24,ADHD-Combined,Female,88,82,99,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3564.3845 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3508.6 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53579.5 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12323.2 +,3601861,9.24,ADHD-Combined,Female,88,82,99,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2999.137 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3151.0 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,593.8 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5233.6 +,3601861,9.24,ADHD-Combined,Female,88,82,99,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1542.7932 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1635.4 +,3601861,9.24,ADHD-Combined,Female,88,82,99,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4834.529 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4906.9 +,3601861,9.24,ADHD-Combined,Female,88,82,99,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6813.56 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6559.9 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3414.5 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,413.5 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,52518.0 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,892741.8 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,906075.8 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,890001.0 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,313167.28 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,524542.56 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,683677.56 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13334.0 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,712.0 +,3601861,9.24,ADHD-Combined,Female,88,82,99,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,142221.6 +,3601861,9.24,ADHD-Combined,Female,88,82,99,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,647571.5 +,3601861,9.24,ADHD-Combined,Female,88,82,99,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3601861,9.24,ADHD-Combined,Female,88,82,99,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,378086.75 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,914.2 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1933.9 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,http://purl.org/nidash/fsl#,Background (mm^3),,,9325044.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1209866.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1193507.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1194006.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17335.1 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,760.5 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,599.3 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,460.7 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,484.7 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,798.9 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,930.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1526760.2 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,198312.9 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,299641.2 +,3610134,10.83,Typically Developing Children,Male,102,85,117,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,458.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,427.4 +,3610134,10.83,Typically Developing Children,Male,102,85,117,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1337.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1431.8 +,3610134,10.83,Typically Developing Children,Male,102,85,117,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3654.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3639.9 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62305.8 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13883.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3630.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3642.3 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,191.7 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6803.2 +,3610134,10.83,Typically Developing Children,Male,102,85,117,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1648.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1739.9 +,3610134,10.83,Typically Developing Children,Male,102,85,117,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4911.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5381.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7810.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7206.5 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3491.6 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,338.8 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.9 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1615132.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,205.2 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,194460.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,294238.9 +,3610134,10.83,Typically Developing Children,Male,102,85,117,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,312.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,500.1 +,3610134,10.83,Typically Developing Children,Male,102,85,117,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1120.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1595.8 +,3610134,10.83,Typically Developing Children,Male,102,85,117,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3791.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3774.4 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61865.7 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12759.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3823.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3668.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,233.7 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5083.1 +,3610134,10.83,Typically Developing Children,Male,102,85,117,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1531.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1625.4 +,3610134,10.83,Typically Developing Children,Male,102,85,117,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4763.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5363.5 +,3610134,10.83,Typically Developing Children,Male,102,85,117,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7816.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7105.4 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3442.7 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,333.1 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55614.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1045443.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1058116.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1041608.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,392772.9 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,593880.06 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,775350.06 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12673.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,978.3 +,3610134,10.83,Typically Developing Children,Male,102,85,117,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,204594.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,706700.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3610134,10.83,Typically Developing Children,Male,102,85,117,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,504876.0 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,589.1 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1482.2 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3611827,9.08,ADHD-Combined,Male,89,106,95,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3068643E7 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1091925.0 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1055101.0 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1055746.9 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16874.2 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,951.6 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,366.9 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,407.6 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,418.4 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,886.9 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1156.2 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1334335.4 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,179916.83 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,262100.69 +,3611827,9.08,ADHD-Combined,Male,89,106,95,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,312.99814 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,582.5 +,3611827,9.08,ADHD-Combined,Male,89,106,95,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,464.99722 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1228.0 +,3611827,9.08,ADHD-Combined,Male,89,106,95,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3626.9783 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3494.6 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,50883.1 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11221.9 +,3611827,9.08,ADHD-Combined,Male,89,106,95,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,1335.9921 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3734.2 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,590.2 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,19497.5 +,3611827,9.08,ADHD-Combined,Male,89,106,95,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1534.9908 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1477.4 +,3611827,9.08,ADHD-Combined,Male,89,106,95,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4501.973 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4891.3 +,3611827,9.08,ADHD-Combined,Male,89,106,95,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6341.9624 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6708.5 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3106.4 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,200.4 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,57.5 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1375780.0 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,75.6 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,177131.28 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,260960.12 +,3611827,9.08,ADHD-Combined,Male,89,106,95,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,223.99866 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,600.9 +,3611827,9.08,ADHD-Combined,Male,89,106,95,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,990.9941 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1685.0 +,3611827,9.08,ADHD-Combined,Male,89,106,95,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3888.9768 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3846.9 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,49401.1 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11177.5 +,3611827,9.08,ADHD-Combined,Male,89,106,95,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2835.9832 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2933.9 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,857.7 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,12730.9 +,3611827,9.08,ADHD-Combined,Male,89,106,95,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1548.9907 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1625.5 +,3611827,9.08,ADHD-Combined,Male,89,106,95,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4423.9736 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4475.4 +,3611827,9.08,ADHD-Combined,Male,89,106,95,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6445.9614 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7025.1 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3167.1 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,357.9 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.7 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,52715.0 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,935126.94 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,968805.94 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,932156.0 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,357048.12 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,523060.8 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,677186.8 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,33679.0 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1077.9 +,3611827,9.08,ADHD-Combined,Male,89,106,95,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,175322.94 +,3611827,9.08,ADHD-Combined,Male,89,106,95,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,619027.4 +,3611827,9.08,ADHD-Combined,Male,89,106,95,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,1.3 +,3611827,9.08,ADHD-Combined,Male,89,106,95,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,432059.44 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1113.7 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2259.9 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3619797,7.49,ADHD-Combined,Male,103,100,106,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1107863E7 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1185456.0 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1170779.0 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1170952.1 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19208.1 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,818.1 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,572.1 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,438.0 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,463.9 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,797.0 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1053.0 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1418929.0 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,188024.12 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,286929.25 +,3619797,7.49,ADHD-Combined,Male,103,100,106,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,526.6807 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,861.4 +,3619797,7.49,ADHD-Combined,Male,103,100,106,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,203.49028 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1456.1 +,3619797,7.49,ADHD-Combined,Male,103,100,106,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4096.406 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3875.0 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60882.0 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14418.3 +,3619797,7.49,ADHD-Combined,Male,103,100,106,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3309.0444 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3625.8 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,498.6 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4789.6 +,3619797,7.49,ADHD-Combined,Male,103,100,106,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1957.7627 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2027.1 +,3619797,7.49,ADHD-Combined,Male,103,100,106,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6329.4785 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6873.4 +,3619797,7.49,ADHD-Combined,Male,103,100,106,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8045.181 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8180.7 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4244.8 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,324.7 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,13.2 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1582308.0 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,221.7 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,189915.69 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,291021.1 +,3619797,7.49,ADHD-Combined,Male,103,100,106,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,384.37054 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,596.6 +,3619797,7.49,ADHD-Combined,Male,103,100,106,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,852.5312 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1716.2 +,3619797,7.49,ADHD-Combined,Male,103,100,106,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3922.1753 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3955.1 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60991.8 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14252.6 +,3619797,7.49,ADHD-Combined,Male,103,100,106,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3448.6948 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3733.5 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,496.9 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4265.6 +,3619797,7.49,ADHD-Combined,Male,103,100,106,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1980.3727 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2219.7 +,3619797,7.49,ADHD-Combined,Male,103,100,106,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6902.7095 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6783.2 +,3619797,7.49,ADHD-Combined,Male,103,100,106,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7042.36 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8303.0 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3846.1 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,448.3 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,3.2 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64351.0 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1023160.2 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1033544.2 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1019863.0 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,377939.8 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,577950.4 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,765031.4 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10384.0 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,904.4 +,3619797,7.49,ADHD-Combined,Male,103,100,106,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,158263.56 +,3619797,7.49,ADHD-Combined,Male,103,100,106,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,707656.75 +,3619797,7.49,ADHD-Combined,Male,103,100,106,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3619797,7.49,ADHD-Combined,Male,103,100,106,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,454506.84 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,843.2 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2670.4 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3624598,14.58,Typically Developing Children,Male,135,121,140,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1005033E7 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1246144.0 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1232161.0 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1231732.9 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22324.0 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,838.5 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,962.2 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,774.6 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,524.2 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1002.2 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1061.1 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1715238.9 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,225012.73 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,273276.03 +,3624598,14.58,Typically Developing Children,Male,135,121,140,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,566.0156 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,487.8 +,3624598,14.58,Typically Developing Children,Male,135,121,140,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1351.7578 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1627.1 +,3624598,14.58,Typically Developing Children,Male,135,121,140,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4028.9062 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3769.1 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59604.6 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,24373.4 +,3624598,14.58,Typically Developing Children,Male,135,121,140,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4138.7695 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4323.8 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,184.2 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4222.9 +,3624598,14.58,Typically Developing Children,Male,135,121,140,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1902.832 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2375.9 +,3624598,14.58,Typically Developing Children,Male,135,121,140,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6430.957 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6286.8 +,3624598,14.58,Typically Developing Children,Male,135,121,140,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8900.684 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8882.4 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4360.7 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,334.2 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,18.2 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1698454.0 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,151.5 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,224369.42 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,271586.66 +,3624598,14.58,Typically Developing Children,Male,135,121,140,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,599.41406 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,683.1 +,3624598,14.58,Typically Developing Children,Male,135,121,140,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1476.5625 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1845.8 +,3624598,14.58,Typically Developing Children,Male,135,121,140,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3908.496 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3696.9 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63476.1 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,22992.2 +,3624598,14.58,Typically Developing Children,Male,135,121,140,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4096.582 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4589.2 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,260.8 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4613.6 +,3624598,14.58,Typically Developing Children,Male,135,121,140,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1934.4727 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2381.2 +,3624598,14.58,Typically Developing Children,Male,135,121,140,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6079.3945 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6284.8 +,3624598,14.58,Typically Developing Children,Male,135,121,140,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8752.148 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8499.5 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4417.4 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,398.3 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,22.6 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65810.0 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1063470.9 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1072998.9 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1060350.0 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,449382.16 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,544862.7 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,735146.7 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9528.0 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,719.4 +,3624598,14.58,Typically Developing Children,Male,135,121,140,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,190456.34 +,3624598,14.58,Typically Developing Children,Male,135,121,140,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,699105.75 +,3624598,14.58,Typically Developing Children,Male,135,121,140,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3624598,14.58,Typically Developing Children,Male,135,121,140,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,583180.7 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,645.0 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,924.1 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3650634,13.25,Typically Developing Children,Female,100,101,99,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1115384E7 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1088961.0 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1063055.0 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1063207.9 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18262.6 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,764.3 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,505.1 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,465.5 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,551.6 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,916.1 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,849.7 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1382112.2 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,189726.34 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,250446.89 +,3650634,13.25,Typically Developing Children,Female,100,101,99,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,579.8808 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,661.5 +,3650634,13.25,Typically Developing Children,Female,100,101,99,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,618.45087 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1177.9 +,3650634,13.25,Typically Developing Children,Female,100,101,99,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3360.9146 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3395.5 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,51732.7 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12146.7 +,3650634,13.25,Typically Developing Children,Female,100,101,99,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3289.0945 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3248.2 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,422.4 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,10294.4 +,3650634,13.25,Typically Developing Children,Female,100,101,99,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1500.2421 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1680.9 +,3650634,13.25,Typically Developing Children,Female,100,101,99,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,3906.2153 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4111.8 +,3650634,13.25,Typically Developing Children,Female,100,101,99,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7549.0903 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7623.4 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3861.1 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,582.3 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,36.2 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1416910.0 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,177.5 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,191752.53 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,251554.08 +,3650634,13.25,Typically Developing Children,Female,100,101,99,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,320.53046 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,663.6 +,3650634,13.25,Typically Developing Children,Female,100,101,99,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,892.4312 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1564.5 +,3650634,13.25,Typically Developing Children,Female,100,101,99,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3618.935 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3535.2 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,50937.4 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11373.2 +,3650634,13.25,Typically Developing Children,Female,100,101,99,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3052.3542 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3202.4 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,514.0 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,11592.3 +,3650634,13.25,Typically Developing Children,Female,100,101,99,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1541.4722 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1673.4 +,3650634,13.25,Typically Developing Children,Female,100,101,99,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,3871.6353 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4009.2 +,3650634,13.25,Typically Developing Children,Female,100,101,99,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7378.85 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7037.9 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3690.6 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,582.9 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,9.5 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,52851.0 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,939469.8 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,963188.8 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,936084.0 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,381478.88 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,502000.97 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,658637.0 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,23719.0 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1261.7 +,3650634,13.25,Typically Developing Children,Female,100,101,99,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,148009.25 +,3650634,13.25,Typically Developing Children,Female,100,101,99,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,656334.6 +,3650634,13.25,Typically Developing Children,Female,100,101,99,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3650634,13.25,Typically Developing Children,Female,100,101,99,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,444757.94 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1295.0 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1347.5 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3653737,9.38,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1114502E7 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1140785.0 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1124223.0 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1123727.5 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15752.1 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1015.0 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,582.5 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,477.4 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,449.2 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,641.3 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1422.8 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1460407.9 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,193912.88 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,263670.0 +,3653737,9.38,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,424.27057 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,665.9 +,3653737,9.38,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,804.6511 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1371.9 +,3653737,9.38,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3638.885 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3834.6 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61925.3 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14850.2 +,3653737,9.38,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3060.3342 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3426.7 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,390.6 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5165.9 +,3653737,9.38,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1457.682 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1964.3 +,3653737,9.38,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4498.0664 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4610.4 +,3653737,9.38,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7030.3896 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7892.3 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4155.7 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,489.0 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,14.5 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1690814.0 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,207.2 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,191866.75 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,264984.9 +,3653737,9.38,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,316.54044 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,574.4 +,3653737,9.38,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,535.9907 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1610.9 +,3653737,9.38,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3783.8552 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3937.7 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59007.1 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15854.6 +,3653737,9.38,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3738.6353 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3514.0 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,296.3 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6247.2 +,3653737,9.38,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1572.0621 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1808.3 +,3653737,9.38,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4363.736 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4444.2 +,3653737,9.38,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7136.79 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7674.0 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4020.2 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,490.9 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.6 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57508.0 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,974477.5 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,987132.5 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,972261.0 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,385779.62 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,528654.94 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,707607.94 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12655.0 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1036.3 +,3653737,9.38,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,233848.9 +,3653737,9.38,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,721487.44 +,3653737,9.38,ADHD-Combined,Male,106,104,106,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3653737,9.38,ADHD-Combined,Male,106,104,106,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,486384.34 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,826.9 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1255.6 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,http://purl.org/nidash/fsl#,Background (mm^3),,,9320299.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1289162.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1274675.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1275236.4 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22812.2 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,800.4 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,481.8 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,513.8 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,509.6 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,913.9 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,795.9 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1640561.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,229094.25 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,297326.34 +,3655623,13.83,Typically Developing Children,Male,124,123,120,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,698.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,617.7 +,3655623,13.83,Typically Developing Children,Male,124,123,120,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1172.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1686.7 +,3655623,13.83,Typically Developing Children,Male,124,123,120,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3765.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3946.3 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63203.8 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,17082.6 +,3655623,13.83,Typically Developing Children,Male,124,123,120,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3658.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3848.6 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,449.7 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6743.2 +,3655623,13.83,Typically Developing Children,Male,124,123,120,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2011.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2072.6 +,3655623,13.83,Typically Developing Children,Male,124,123,120,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5394.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5432.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8899.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8195.8 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4404.3 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,489.4 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,40.7 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1682326.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,192.1 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,228243.27 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,296827.53 +,3655623,13.83,Typically Developing Children,Male,124,123,120,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,561.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,537.8 +,3655623,13.83,Typically Developing Children,Male,124,123,120,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1506.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1926.6 +,3655623,13.83,Typically Developing Children,Male,124,123,120,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4006.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4035.3 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,65009.5 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,16038.1 +,3655623,13.83,Typically Developing Children,Male,124,123,120,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3948.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4063.9 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,238.5 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3800.2 +,3655623,13.83,Typically Developing Children,Male,124,123,120,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1892.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1986.3 +,3655623,13.83,Typically Developing Children,Male,124,123,120,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5167.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5418.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8672.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8403.8 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4482.8 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,464.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,21.1 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62576.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1116438.4 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1128149.4 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1113360.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,457337.53 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,594153.9 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,785523.9 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11711.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,495.9 +,3655623,13.83,Typically Developing Children,Male,124,123,120,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,220020.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,742379.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3655623,13.83,Typically Developing Children,Male,124,123,120,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,573602.0 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,789.0 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1017.9 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,927255.0 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,913483.0 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,912818.8 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,13845.9 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1072.8 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,566.9 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,778.9 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,617.5 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1188.6 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,923.4 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1268894.5 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,176454.27 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,210988.97 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,792.6 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1226.7 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3801.0 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,33444.8 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,6206.5 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3327.6 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,326.9 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5356.5 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1805.5 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5529.9 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6850.8 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3000.4 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,391.0 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1560695.0 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,163.2 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,175124.53 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,221003.02 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,529.1 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1264.5 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3917.8 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,29214.8 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,4809.6 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3475.4 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,259.1 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4894.6 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1836.6 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5263.2 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6800.3 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,2981.7 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,535.6 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.6 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,54778.0 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,840295.8 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,851538.8 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,838855.0 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,351578.78 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,431992.0 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,550489.0 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11243.0 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2880.6 +,3662296,12.45,Typically Developing Children,Female,98,104,90,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1275.5 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1543.1 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3672300,14,ADHD-Inattentive,Male,120,120,117,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1493754E7 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1249574.0 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1229970.0 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1230036.2 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20453.4 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,936.4 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,585.5 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,542.5 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,452.3 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,756.5 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1255.1 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1362471.1 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,204589.55 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,303349.72 +,3672300,14,ADHD-Inattentive,Male,120,120,117,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,124.0 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,440.3 +,3672300,14,ADHD-Inattentive,Male,120,120,117,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,923.0 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1589.8 +,3672300,14,ADHD-Inattentive,Male,120,120,117,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3058.25 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3079.0 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62415.7 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14321.4 +,3672300,14,ADHD-Inattentive,Male,120,120,117,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3540.25 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4017.6 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,256.6 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8153.0 +,3672300,14,ADHD-Inattentive,Male,120,120,117,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1508.0 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1796.0 +,3672300,14,ADHD-Inattentive,Male,120,120,117,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4314.5 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4505.1 +,3672300,14,ADHD-Inattentive,Male,120,120,117,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7281.75 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7615.2 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3897.9 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,500.6 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,28.2 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1786056.0 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,160.6 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,204051.62 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,308753.3 +,3672300,14,ADHD-Inattentive,Male,120,120,117,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,231.25 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,459.9 +,3672300,14,ADHD-Inattentive,Male,120,120,117,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1002.0 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1583.0 +,3672300,14,ADHD-Inattentive,Male,120,120,117,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2845.5 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3124.8 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64248.2 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12660.4 +,3672300,14,ADHD-Inattentive,Male,120,120,117,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3058.25 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3996.3 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,333.3 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6408.7 +,3672300,14,ADHD-Inattentive,Male,120,120,117,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1392.25 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1508.8 +,3672300,14,ADHD-Inattentive,Male,120,120,117,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4232.75 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4647.4 +,3672300,14,ADHD-Inattentive,Male,120,120,117,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7069.75 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7599.1 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3766.8 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,459.5 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.3 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55373.0 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1078401.2 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1094036.2 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1075950.0 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,408641.2 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,612103.06 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,795343.06 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15635.0 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,712.3 +,3672300,14,ADHD-Inattentive,Male,120,120,117,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,264574.5 +,3672300,14,ADHD-Inattentive,Male,120,120,117,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,742845.5 +,3672300,14,ADHD-Inattentive,Male,120,120,117,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3672300,14,ADHD-Inattentive,Male,120,120,117,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,577414.5 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,821.0 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1864.6 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3679455,11.97,ADHD-Combined,Male,102,89,114,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1136398E7 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1231845.0 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1220686.0 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1220726.9 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15735.0 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,959.6 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,665.1 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,707.1 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,506.8 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,953.4 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,763.2 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1497448.0 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,239715.44 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,291889.5 +,3679455,11.97,ADHD-Combined,Male,102,89,114,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,140.9802 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,433.1 +,3679455,11.97,ADHD-Combined,Male,102,89,114,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,271.32037 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1295.4 +,3679455,11.97,ADHD-Combined,Male,102,89,114,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2540.3035 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3967.5 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,40956.6 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,8184.2 +,3679455,11.97,ADHD-Combined,Male,102,89,114,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,1012.1314 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4001.4 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,318.1 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3530.7 +,3679455,11.97,ADHD-Combined,Male,102,89,114,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,812.6311 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1968.4 +,3679455,11.97,ADHD-Combined,Male,102,89,114,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,1566.7422 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4965.1 +,3679455,11.97,ADHD-Combined,Male,102,89,114,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,3794.495 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8642.0 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3927.1 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,447.6 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,1.7 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1618424.0 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,158.7 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,241443.77 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,291377.2 +,3679455,11.97,ADHD-Combined,Male,102,89,114,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,67.83009 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,525.5 +,3679455,11.97,ADHD-Combined,Male,102,89,114,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,328.51044 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1510.2 +,3679455,11.97,ADHD-Combined,Male,102,89,114,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2952.604 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4054.2 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,40460.7 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,8097.3 +,3679455,11.97,ADHD-Combined,Male,102,89,114,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,1048.0415 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3762.8 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,335.9 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3268.6 +,3679455,11.97,ADHD-Combined,Male,102,89,114,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,485.45068 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1740.2 +,3679455,11.97,ADHD-Combined,Male,102,89,114,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,1494.9221 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5238.0 +,3679455,11.97,ADHD-Combined,Male,102,89,114,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,3950.1055 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7760.0 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3735.9 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,484.7 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,4.7 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59198.0 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1125210.9 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1133129.9 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1123459.0 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,481159.2 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,583266.7 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,724325.7 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7919.0 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,714.5 +,3679455,11.97,ADHD-Combined,Male,102,89,114,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,188799.08 +,3679455,11.97,ADHD-Combined,Male,102,89,114,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,639589.9 +,3679455,11.97,ADHD-Combined,Male,102,89,114,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3679455,11.97,ADHD-Combined,Male,102,89,114,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,476590.2 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1258.9 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2420.3 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,http://purl.org/nidash/fsl#,Background (mm^3),,,9328403.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1164962.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1145099.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1145781.5 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18098.9 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,651.6 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,551.6 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,458.8 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,471.5 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,673.3 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,907.6 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1494673.4 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,188931.06 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,281331.3 +,3691107,9.67,ADHD-Combined,Male,123,88,149,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,457.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,596.9 +,3691107,9.67,ADHD-Combined,Male,123,88,149,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1215.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1668.6 +,3691107,9.67,ADHD-Combined,Male,123,88,149,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2915.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3482.2 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62848.7 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13575.2 +,3691107,9.67,ADHD-Combined,Male,123,88,149,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3583.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4162.3 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,328.8 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7253.2 +,3691107,9.67,ADHD-Combined,Male,123,88,149,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1450.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1680.9 +,3691107,9.67,ADHD-Combined,Male,123,88,149,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4760.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5199.6 +,3691107,9.67,ADHD-Combined,Male,123,88,149,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7507.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7816.5 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3804.3 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,456.1 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,26.1 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1540404.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,105.8 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,188237.1 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,276406.97 +,3691107,9.67,ADHD-Combined,Male,123,88,149,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,371.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,481.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,921.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1521.6 +,3691107,9.67,ADHD-Combined,Male,123,88,149,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2975.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3705.2 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63572.8 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13200.5 +,3691107,9.67,ADHD-Combined,Male,123,88,149,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4137.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4307.7 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,291.3 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6683.9 +,3691107,9.67,ADHD-Combined,Male,123,88,149,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1589.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1591.5 +,3691107,9.67,ADHD-Combined,Male,123,88,149,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4375.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5138.7 +,3691107,9.67,ADHD-Combined,Male,123,88,149,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6990.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7353.4 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3889.9 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,655.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.9 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57757.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,995362.44 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1010719.44 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,991904.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,377168.16 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,557738.3 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,742743.3 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15357.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,463.9 +,3691107,9.67,ADHD-Combined,Male,123,88,149,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,213283.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,706803.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3691107,9.67,ADHD-Combined,Male,123,88,149,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,487923.0 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1250.0 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2574.7 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3699991,12.77,Typically Developing Children,Male,98,102,104,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3054938E7 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1304865.0 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1278472.0 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1278758.1 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21171.8 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,856.6 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,392.1 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,440.3 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,487.9 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,977.2 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,904.5 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1657141.6 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,217497.52 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,309541.9 +,3699991,12.77,Typically Developing Children,Male,98,102,104,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,597.006 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,761.7 +,3699991,12.77,Typically Developing Children,Male,98,102,104,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1078.0107 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1932.5 +,3699991,12.77,Typically Developing Children,Male,98,102,104,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4118.041 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4035.8 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,66741.4 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15758.1 +,3699991,12.77,Typically Developing Children,Male,98,102,104,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3701.037 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4154.8 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,925.6 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,10870.5 +,3699991,12.77,Typically Developing Children,Male,98,102,104,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1975.0198 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2047.2 +,3699991,12.77,Typically Developing Children,Male,98,102,104,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5886.059 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6355.5 +,3699991,12.77,Typically Developing Children,Male,98,102,104,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8557.086 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7956.0 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4143.0 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,718.2 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,23.6 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1755997.0 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,148.0 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,216787.31 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,309870.34 +,3699991,12.77,Typically Developing Children,Male,98,102,104,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,504.00504 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,816.2 +,3699991,12.77,Typically Developing Children,Male,98,102,104,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1280.0128 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1917.1 +,3699991,12.77,Typically Developing Children,Male,98,102,104,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4091.041 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3999.6 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63181.3 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14114.0 +,3699991,12.77,Typically Developing Children,Male,98,102,104,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4149.0415 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4504.7 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,734.6 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8155.7 +,3699991,12.77,Typically Developing Children,Male,98,102,104,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1954.0195 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1861.2 +,3699991,12.77,Typically Developing Children,Male,98,102,104,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6005.06 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6384.3 +,3699991,12.77,Typically Developing Children,Male,98,102,104,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8498.085 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7669.7 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4467.7 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,669.2 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.3 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65206.0 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1120731.1 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1142503.1 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1118511.0 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,434284.8 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,619412.25 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,815357.25 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,21772.0 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1109.7 +,3699991,12.77,Typically Developing Children,Male,98,102,104,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,232847.34 +,3699991,12.77,Typically Developing Children,Male,98,102,104,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,645275.44 +,3699991,12.77,Typically Developing Children,Male,98,102,104,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3699991,12.77,Typically Developing Children,Male,98,102,104,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,510706.12 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,619.2 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1648.2 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3712305,11,ADHD-Inattentive,Male,103,101,104,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1019557E7 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1157109.0 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1148194.0 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1145269.6 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16907.0 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,906.5 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,839.8 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,663.1 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,583.4 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,814.3 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,809.0 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1492133.8 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,203784.52 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,269715.4 +,3712305,11,ADHD-Inattentive,Male,103,101,104,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,416.60156 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,397.5 +,3712305,11,ADHD-Inattentive,Male,103,101,104,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,978.22266 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1325.9 +,3712305,11,ADHD-Inattentive,Male,103,101,104,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2776.4648 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3675.7 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,48625.9 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16197.4 +,3712305,11,ADHD-Inattentive,Male,103,101,104,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2721.0938 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3719.9 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,201.1 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3048.7 +,3712305,11,ADHD-Inattentive,Male,103,101,104,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1587.3047 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1938.8 +,3712305,11,ADHD-Inattentive,Male,103,101,104,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4603.711 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4897.7 +,3712305,11,ADHD-Inattentive,Male,103,101,104,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6731.543 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6894.9 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3784.7 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,176.6 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1629903.0 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,139.4 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,204695.52 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,278195.2 +,3712305,11,ADHD-Inattentive,Male,103,101,104,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,515.03906 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,464.5 +,3712305,11,ADHD-Inattentive,Male,103,101,104,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,655.66406 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1750.4 +,3712305,11,ADHD-Inattentive,Male,103,101,104,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2898.6328 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3780.4 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,52274.6 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14028.0 +,3712305,11,ADHD-Inattentive,Male,103,101,104,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3119.2383 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4206.0 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,298.3 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2531.6 +,3712305,11,ADHD-Inattentive,Male,103,101,104,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1498.5352 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1966.8 +,3712305,11,ADHD-Inattentive,Male,103,101,104,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4489.453 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4859.7 +,3712305,11,ADHD-Inattentive,Male,103,101,104,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6651.5625 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6782.2 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3526.7 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,239.8 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55880.0 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1018549.6 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1024539.6 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1015044.0 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,408480.03 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,547910.6 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,706508.6 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,5990.0 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,4016.2 +,3712305,11,ADHD-Inattentive,Male,103,101,104,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,149660.16 +,3712305,11,ADHD-Inattentive,Male,103,101,104,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,739942.4 +,3712305,11,ADHD-Inattentive,Male,103,101,104,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3712305,11,ADHD-Inattentive,Male,103,101,104,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,521365.44 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,761.5 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1200.0 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3713230,11.67,Typically Developing Children,Female,119,106,132,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3056958E7 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1273961.0 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1263241.0 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1263930.4 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22438.6 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,866.1 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,599.0 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,462.2 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,455.8 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,701.4 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,695.4 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1635627.1 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,220467.47 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,304627.72 +,3713230,11.67,Typically Developing Children,Female,119,106,132,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,583.9959 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,783.8 +,3713230,11.67,Typically Developing Children,Female,119,106,132,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1259.9911 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1518.4 +,3713230,11.67,Typically Developing Children,Female,119,106,132,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4195.9707 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3778.0 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61323.2 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14087.9 +,3713230,11.67,Typically Developing Children,Female,119,106,132,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3252.977 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4176.0 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,237.3 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3308.4 +,3713230,11.67,Typically Developing Children,Female,119,106,132,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1783.9874 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1968.7 +,3713230,11.67,Typically Developing Children,Female,119,106,132,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4927.9653 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5323.2 +,3713230,11.67,Typically Developing Children,Female,119,106,132,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9115.936 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7886.0 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4072.0 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,474.7 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,6.9 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1667493.0 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,160.8 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,220214.69 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,306880.47 +,3713230,11.67,Typically Developing Children,Female,119,106,132,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,587.99585 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,663.7 +,3713230,11.67,Typically Developing Children,Female,119,106,132,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1077.9924 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1651.8 +,3713230,11.67,Typically Developing Children,Female,119,106,132,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4335.9697 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4390.8 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61041.6 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13867.9 +,3713230,11.67,Typically Developing Children,Female,119,106,132,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3445.9758 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4049.5 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,350.5 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3611.2 +,3713230,11.67,Typically Developing Children,Female,119,106,132,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1971.9861 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1884.4 +,3713230,11.67,Typically Developing Children,Female,119,106,132,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4947.9653 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5321.3 +,3713230,11.67,Typically Developing Children,Female,119,106,132,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8660.939 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7718.9 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4509.7 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,529.0 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,28.6 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61721.0 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1115403.4 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1123562.4 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1113096.0 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,440682.16 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,611508.2 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,796102.2 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8159.0 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1141.2 +,3713230,11.67,Typically Developing Children,Female,119,106,132,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,198689.61 +,3713230,11.67,Typically Developing Children,Female,119,106,132,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,712417.0 +,3713230,11.67,Typically Developing Children,Female,119,106,132,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3713230,11.67,Typically Developing Children,Female,119,106,132,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,515994.38 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,734.3 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2047.9 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1488141E7 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1201751.0 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1181044.0 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1180861.4 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,23904.3 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,685.1 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,483.0 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,739.6 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,462.8 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,825.6 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,875.0 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1531303.6 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,222525.03 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,261586.4 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,360.25 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,511.0 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1042.5 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1749.7 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4139.75 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4323.0 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,64915.9 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16293.7 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3389.25 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4168.0 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,371.5 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,11619.3 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1932.0 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2245.8 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4584.75 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5485.2 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6903.75 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8792.0 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4577.4 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,815.3 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,11.9 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1664258.0 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,123.9 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,210928.27 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,259902.66 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,307.0 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,614.2 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1032.25 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1786.0 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4106.5 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4300.3 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64524.5 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13791.1 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4126.5 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4449.4 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,153.7 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4579.8 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1701.25 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2149.1 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4656.75 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5385.4 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7912.75 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8813.1 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4574.7 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,477.3 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65763.0 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1023208.4 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1040273.4 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1020790.0 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,433453.3 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,521489.06 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,718313.06 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,17065.0 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1017.0 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,211155.75 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,691458.5 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3803759,13.17,ADHD-Inattentive,Male,95,79,111,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,571964.0 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,563.5 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,3008.9 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3813783,10.55,Typically Developing Children,Female,132,131,121,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3059676E7 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1144933.0 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1132103.0 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1132180.2 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18146.6 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,781.5 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,624.3 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,530.2 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,442.3 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,800.8 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,613.4 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1378220.6 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,191151.17 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,277501.62 +,3813783,10.55,Typically Developing Children,Female,132,131,121,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,433.99738 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,616.2 +,3813783,10.55,Typically Developing Children,Female,132,131,121,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,945.99426 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1660.0 +,3813783,10.55,Typically Developing Children,Female,132,131,121,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4202.9746 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4068.8 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57410.8 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12551.3 +,3813783,10.55,Typically Developing Children,Female,132,131,121,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3457.979 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3666.6 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,207.6 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3665.0 +,3813783,10.55,Typically Developing Children,Female,132,131,121,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1617.9901 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1650.3 +,3813783,10.55,Typically Developing Children,Female,132,131,121,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5061.969 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5334.5 +,3813783,10.55,Typically Developing Children,Female,132,131,121,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7925.9517 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7591.7 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3570.1 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,449.0 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,13.4 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1494969.0 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,147.2 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,190872.67 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,275059.72 +,3813783,10.55,Typically Developing Children,Female,132,131,121,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,422.99744 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,533.1 +,3813783,10.55,Typically Developing Children,Female,132,131,121,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1024.9938 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1691.8 +,3813783,10.55,Typically Developing Children,Female,132,131,121,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4403.973 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4294.2 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56780.3 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11827.1 +,3813783,10.55,Typically Developing Children,Female,132,131,121,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3548.9785 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3842.4 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,266.3 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4075.6 +,3813783,10.55,Typically Developing Children,Female,132,131,121,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1650.99 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1587.2 +,3813783,10.55,Typically Developing Children,Female,132,131,121,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5067.969 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5435.7 +,3813783,10.55,Typically Developing Children,Female,132,131,121,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7677.953 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7577.6 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3533.8 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,559.6 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,9.3 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58435.0 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,995372.2 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1004173.2 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,992805.0 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,382023.84 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,552561.4 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,726582.4 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8801.0 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,636.7 +,3813783,10.55,Typically Developing Children,Female,132,131,121,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,174807.94 +,3813783,10.55,Typically Developing Children,Female,132,131,121,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,648954.06 +,3813783,10.55,Typically Developing Children,Female,132,131,121,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3813783,10.55,Typically Developing Children,Female,132,131,121,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,455990.22 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1120.5 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2443.6 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,http://purl.org/nidash/fsl#,Background (mm^3),,,9311184.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1462610.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1438747.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1439680.9 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,26911.9 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1008.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,599.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,568.7 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,491.8 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1191.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1129.3 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1971570.1 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,272867.25 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,325687.53 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,838.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,796.9 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,903.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,2241.2 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4988.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4788.5 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,71771.3 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15717.9 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4422.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4530.2 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,595.1 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,10586.4 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2415.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2768.3 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6176.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6818.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9638.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9413.3 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,5452.9 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,421.9 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,51.5 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1943354.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,230.8 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,268263.8 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,323329.25 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,610.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,789.6 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1897.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2133.5 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4759.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4786.6 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,71632.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15365.3 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,5383.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,5239.4 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,299.7 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7213.4 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2319.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2473.3 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6369.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6541.2 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9747.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9900.5 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,5198.2 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,508.7 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.6 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,75486.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1267808.9 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1287005.9 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1264564.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,541131.06 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,649016.75 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,868332.75 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,19197.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,674.5 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,236853.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,779749.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3827352,15.83,ADHD-Inattentive,Male,116,112,116,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,676165.0 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,734.2 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2028.5 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3845761,8.19,Typically Developing Children,Male,110,102,117,http://purl.org/nidash/fsl#,Background (mm^3),,,1.110572E7 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1272551.0 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1260457.0 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1260864.1 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19204.2 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,731.0 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,462.3 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,509.1 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,569.5 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,879.5 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,982.8 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1532401.6 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,207846.2 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,311460.8 +,3845761,8.19,Typically Developing Children,Male,110,102,117,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,574.5608 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,855.4 +,3845761,8.19,Typically Developing Children,Male,110,102,117,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,617.12085 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1573.1 +,3845761,8.19,Typically Developing Children,Male,110,102,117,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,5232.227 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4820.0 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,64248.2 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15011.7 +,3845761,8.19,Typically Developing Children,Male,110,102,117,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3786.5151 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4206.1 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,341.8 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3623.3 +,3845761,8.19,Typically Developing Children,Male,110,102,117,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1830.0825 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2210.2 +,3845761,8.19,Typically Developing Children,Male,110,102,117,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5556.7476 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6260.5 +,3845761,8.19,Typically Developing Children,Male,110,102,117,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7678.1006 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7824.5 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3944.5 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,416.5 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,9.6 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1648834.0 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,107.8 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,208563.36 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,310759.78 +,3845761,8.19,Typically Developing Children,Male,110,102,117,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,516.0407 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,631.5 +,3845761,8.19,Typically Developing Children,Male,110,102,117,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,433.5806 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1708.2 +,3845761,8.19,Typically Developing Children,Male,110,102,117,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5552.758 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5638.6 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63513.9 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13661.1 +,3845761,8.19,Typically Developing Children,Male,110,102,117,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4099.0654 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4095.3 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,268.0 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3534.5 +,3845761,8.19,Typically Developing Children,Male,110,102,117,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1956.4327 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2041.5 +,3845761,8.19,Typically Developing Children,Male,110,102,117,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5741.6177 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6052.4 +,3845761,8.19,Typically Developing Children,Male,110,102,117,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7569.0405 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8007.4 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3838.1 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,653.5 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,2.3 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65588.0 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1107298.1 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1115780.1 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1103711.0 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,416409.56 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,622220.6 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,816518.6 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8482.0 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1103.8 +,3845761,8.19,Typically Developing Children,Male,110,102,117,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,134072.17 +,3845761,8.19,Typically Developing Children,Male,110,102,117,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,785666.7 +,3845761,8.19,Typically Developing Children,Male,110,102,117,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3845761,8.19,Typically Developing Children,Male,110,102,117,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,494116.97 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,816.5 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1914.9 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,http://purl.org/nidash/fsl#,Background (mm^3),,,9316025.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1353375.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1334984.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1335780.6 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,23683.2 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,982.5 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,584.1 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,481.6 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,647.6 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,976.7 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,711.1 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1746391.2 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,253646.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,297926.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,571.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,559.6 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1000.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1824.7 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4043.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3968.8 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,64900.2 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16825.7 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4525.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4187.3 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,301.9 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5781.7 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2090.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2368.2 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6370.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6406.5 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9671.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9247.8 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4619.7 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,432.9 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,30.7 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1740740.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,164.6 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,253230.77 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,299034.88 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,550.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,563.2 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1305.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1825.3 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4084.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4321.5 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,66076.2 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15963.2 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4384.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4390.3 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,269.7 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8140.7 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2072.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2193.4 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6166.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6516.2 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8792.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8460.8 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4580.3 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,428.3 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.8 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67313.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1174366.6 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1189398.6 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1170251.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,506876.78 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,596960.9 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,796729.9 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15032.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,763.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,219575.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,756395.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3856956,13.75,ADHD-Inattentive,Male,117,106,124,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,630055.0 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,918.4 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1901.9 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3870624,11,ADHD-Combined,Male,117,111,119,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1011086E7 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1265259.0 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1255082.0 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1256041.2 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20929.7 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,693.4 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,859.1 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,865.9 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,589.6 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,979.1 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,816.3 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1607171.6 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,230370.67 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,284803.88 +,3870624,11,ADHD-Combined,Male,117,111,119,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,434.1797 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,483.7 +,3870624,11,ADHD-Combined,Male,117,111,119,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,899.1211 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1901.7 +,3870624,11,ADHD-Combined,Male,117,111,119,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3729.1992 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3728.1 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60803.6 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15884.2 +,3870624,11,ADHD-Combined,Male,117,111,119,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3290.625 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4135.6 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,225.9 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2948.2 +,3870624,11,ADHD-Combined,Male,117,111,119,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1756.0547 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2162.0 +,3870624,11,ADHD-Combined,Male,117,111,119,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5073.926 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5400.3 +,3870624,11,ADHD-Combined,Male,117,111,119,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8560.547 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8606.1 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4601.8 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,196.1 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,38.8 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1715241.0 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,58.8 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,233568.86 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,289139.8 +,3870624,11,ADHD-Combined,Male,117,111,119,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,394.6289 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,626.2 +,3870624,11,ADHD-Combined,Male,117,111,119,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,949.21875 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1927.8 +,3870624,11,ADHD-Combined,Male,117,111,119,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3989.3555 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4038.8 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56086.9 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,20021.4 +,3870624,11,ADHD-Combined,Male,117,111,119,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3971.7773 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4529.6 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,143.4 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3289.0 +,3870624,11,ADHD-Combined,Male,117,111,119,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1664.6484 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2082.3 +,3870624,11,ADHD-Combined,Male,117,111,119,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5276.953 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5816.1 +,3870624,11,ADHD-Combined,Male,117,111,119,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8123.7305 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8776.4 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4083.4 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,413.2 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.1 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64629.0 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1105488.2 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1112149.2 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1101543.0 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,463939.53 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,573943.7 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,756560.7 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6661.0 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1205.4 +,3870624,11,ADHD-Combined,Male,117,111,119,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,187442.58 +,3870624,11,ADHD-Combined,Male,117,111,119,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,767286.94 +,3870624,11,ADHD-Combined,Male,117,111,119,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3870624,11,ADHD-Combined,Male,117,111,119,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,585904.4 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,813.8 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2043.4 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3884955,11.84,Typically Developing Children,Male,134,123,119,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3051426E7 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1346696.0 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1320796.0 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1321440.8 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22917.9 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1073.7 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,503.6 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,454.1 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,627.2 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,955.4 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,670.8 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1613771.9 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,241033.02 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,305143.56 +,3884955,11.84,Typically Developing Children,Male,134,123,119,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,588.0024 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,771.2 +,3884955,11.84,Typically Developing Children,Male,134,123,119,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1385.0056 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1596.5 +,3884955,11.84,Typically Developing Children,Male,134,123,119,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4608.0186 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4788.7 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,64823.3 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15053.2 +,3884955,11.84,Typically Developing Children,Male,134,123,119,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4435.018 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4199.4 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,532.8 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,11291.2 +,3884955,11.84,Typically Developing Children,Male,134,123,119,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2018.0082 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2182.1 +,3884955,11.84,Typically Developing Children,Male,134,123,119,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5821.0234 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6301.5 +,3884955,11.84,Typically Developing Children,Male,134,123,119,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8794.035 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8603.8 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4554.9 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,566.4 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,21.1 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1727858.0 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,138.0 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,240259.22 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,309728.9 +,3884955,11.84,Typically Developing Children,Male,134,123,119,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,533.00214 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,712.3 +,3884955,11.84,Typically Developing Children,Male,134,123,119,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1456.0059 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1904.2 +,3884955,11.84,Typically Developing Children,Male,134,123,119,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4913.02 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5050.3 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62349.4 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14112.5 +,3884955,11.84,Typically Developing Children,Male,134,123,119,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4568.0186 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4593.7 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,321.1 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,9834.3 +,3884955,11.84,Typically Developing Children,Male,134,123,119,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2045.0083 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1995.8 +,3884955,11.84,Typically Developing Children,Male,134,123,119,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5840.0234 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6259.7 +,3884955,11.84,Typically Developing Children,Male,134,123,119,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8823.036 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8448.9 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4534.2 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,560.3 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,23.7 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68479.0 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1166664.8 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1189300.8 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1163893.0 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,481292.22 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,614872.5 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,811484.5 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,22636.0 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1034.0 +,3884955,11.84,Typically Developing Children,Male,134,123,119,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,206056.84 +,3884955,11.84,Typically Developing Children,Male,134,123,119,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,689117.8 +,3884955,11.84,Typically Developing Children,Male,134,123,119,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3884955,11.84,Typically Developing Children,Male,134,123,119,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,568860.3 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,856.6 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1420.8 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3902469,10.64,Typically Developing Children,Male,124,112,132,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3055578E7 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1384882.0 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1369027.0 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1370328.4 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19251.7 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,976.7 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,435.1 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,473.5 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,529.0 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,790.1 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,699.3 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1681323.6 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,238475.97 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,339705.8 +,3902469,10.64,Typically Developing Children,Male,124,112,132,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,658.99603 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,754.4 +,3902469,10.64,Typically Developing Children,Male,124,112,132,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,982.9941 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1557.2 +,3902469,10.64,Typically Developing Children,Male,124,112,132,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4563.9727 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4325.9 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62254.3 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12810.0 +,3902469,10.64,Typically Developing Children,Male,124,112,132,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3229.9805 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3823.6 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,435.5 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6539.7 +,3902469,10.64,Typically Developing Children,Male,124,112,132,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1767.9894 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1732.9 +,3902469,10.64,Typically Developing Children,Male,124,112,132,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5538.967 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5827.3 +,3902469,10.64,Typically Developing Children,Male,124,112,132,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8910.946 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7725.1 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3789.7 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,273.2 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,28.2 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1741141.0 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,137.7 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,239544.3 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,341807.25 +,3902469,10.64,Typically Developing Children,Male,124,112,132,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,488.99707 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,628.2 +,3902469,10.64,Typically Developing Children,Male,124,112,132,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,383.99768 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1663.3 +,3902469,10.64,Typically Developing Children,Male,124,112,132,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4857.9707 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4783.2 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61419.3 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12298.3 +,3902469,10.64,Typically Developing Children,Male,124,112,132,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4210.9746 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4293.5 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,360.8 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5625.3 +,3902469,10.64,Typically Developing Children,Male,124,112,132,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1739.9895 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1596.5 +,3902469,10.64,Typically Developing Children,Male,124,112,132,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5479.967 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5855.3 +,3902469,10.64,Typically Developing Children,Male,124,112,132,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8726.947 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7671.2 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3915.4 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,283.0 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.8 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61795.0 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1223368.4 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1236381.4 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1219917.0 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,478020.28 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,681513.06 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,867996.06 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13013.0 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,980.3 +,3902469,10.64,Typically Developing Children,Male,124,112,132,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,183958.89 +,3902469,10.64,Typically Developing Children,Male,124,112,132,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,646936.1 +,3902469,10.64,Typically Developing Children,Male,124,112,132,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3902469,10.64,Typically Developing Children,Male,124,112,132,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,528743.8 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,860.1 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2439.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,http://purl.org/nidash/fsl#,Background (mm^3),,,9316224.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1414283.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1392494.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1393126.1 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21639.9 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1113.3 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,669.1 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,882.8 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,640.6 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,912.1 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,840.5 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1811273.6 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,255500.23 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,335788.1 +,3910672,10.08,ADHD-Combined,Male,122,97,140,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,675.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,638.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1003.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1937.1 +,3910672,10.08,ADHD-Combined,Male,122,97,140,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4771.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4944.5 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59768.4 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13681.5 +,3910672,10.08,ADHD-Combined,Male,122,97,140,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4156.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4279.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,491.7 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8406.3 +,3910672,10.08,ADHD-Combined,Male,122,97,140,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2178.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2243.7 +,3910672,10.08,ADHD-Combined,Male,122,97,140,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6117.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6362.5 +,3910672,10.08,ADHD-Combined,Male,122,97,140,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8678.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9118.4 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4678.6 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,537.7 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,15.4 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1828857.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,246.5 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,252260.92 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,331197.94 +,3910672,10.08,ADHD-Combined,Male,122,97,140,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,417.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,558.4 +,3910672,10.08,ADHD-Combined,Male,122,97,140,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1339.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1936.9 +,3910672,10.08,ADHD-Combined,Male,122,97,140,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4729.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5033.1 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61634.9 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13433.3 +,3910672,10.08,ADHD-Combined,Male,122,97,140,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4772.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4660.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,389.6 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7595.6 +,3910672,10.08,ADHD-Combined,Male,122,97,140,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2075.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2093.5 +,3910672,10.08,ADHD-Combined,Male,122,97,140,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6201.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6479.5 +,3910672,10.08,ADHD-Combined,Male,122,97,140,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8313.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9069.9 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4684.2 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,628.3 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.2 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,70318.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1247109.1 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1264896.1 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1244234.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,507761.16 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,666986.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,859282.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,17787.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,839.9 +,3910672,10.08,ADHD-Combined,Male,122,97,140,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,221805.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,745182.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3910672,10.08,ADHD-Combined,Male,122,97,140,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,607665.0 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1052.0 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2652.0 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3912996,9.79,Typically Developing Children,Female,109,110,108,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3059334E7 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1154177.0 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1130171.0 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1130629.2 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18884.1 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,663.0 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,371.4 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,425.7 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,382.4 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,811.8 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,831.3 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1398153.9 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,191077.4 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,279999.88 +,3912996,9.79,Typically Developing Children,Female,109,110,108,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,537.0021 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,615.7 +,3912996,9.79,Typically Developing Children,Female,109,110,108,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1075.0042 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1622.8 +,3912996,9.79,Typically Developing Children,Female,109,110,108,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3573.0137 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3411.2 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52900.3 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12136.7 +,3912996,9.79,Typically Developing Children,Female,109,110,108,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3301.0127 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3491.1 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,459.9 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,10440.2 +,3912996,9.79,Typically Developing Children,Female,109,110,108,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1737.0066 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1707.0 +,3912996,9.79,Typically Developing Children,Female,109,110,108,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5083.0195 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5752.3 +,3912996,9.79,Typically Developing Children,Female,109,110,108,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8444.032 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7579.4 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3693.2 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,419.7 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,49.8 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1463642.0 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,126.4 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,189520.8 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,280482.2 +,3912996,9.79,Typically Developing Children,Female,109,110,108,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,403.00153 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,653.2 +,3912996,9.79,Typically Developing Children,Female,109,110,108,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1148.0044 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1706.6 +,3912996,9.79,Typically Developing Children,Female,109,110,108,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3529.0134 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3586.8 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53027.5 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11883.6 +,3912996,9.79,Typically Developing Children,Female,109,110,108,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3444.0132 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3565.9 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,369.6 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7929.5 +,3912996,9.79,Typically Developing Children,Female,109,110,108,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1708.0065 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1685.8 +,3912996,9.79,Typically Developing Children,Female,109,110,108,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5442.021 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5733.7 +,3912996,9.79,Typically Developing Children,Female,109,110,108,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8492.032 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7596.2 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3659.5 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,486.3 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,22.6 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58242.0 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1001905.25 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1021508.25 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,998808.0 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,380598.22 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,560482.06 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,726692.06 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,19603.0 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,927.7 +,3912996,9.79,Typically Developing Children,Female,109,110,108,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,117498.45 +,3912996,9.79,Typically Developing Children,Female,109,110,108,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,511520.94 +,3912996,9.79,Typically Developing Children,Female,109,110,108,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3912996,9.79,Typically Developing Children,Female,109,110,108,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,410066.53 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1078.0 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,3034.5 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3917422,8.19,ADHD-Combined,Male,126,119,142,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1741767E7 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1304056.0 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1284235.0 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1284616.0 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21580.3 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,915.0 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,569.1 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,679.0 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,427.0 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,881.4 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1016.7 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1563438.2 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,217588.3 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,313585.53 +,3917422,8.19,ADHD-Combined,Male,126,119,142,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,698.00616 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,838.4 +,3917422,8.19,ADHD-Combined,Male,126,119,142,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1223.0107 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1524.1 +,3917422,8.19,ADHD-Combined,Male,126,119,142,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3997.0352 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4902.2 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,65246.8 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14504.9 +,3917422,8.19,ADHD-Combined,Male,126,119,142,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3713.0327 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3630.7 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,285.2 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6399.2 +,3917422,8.19,ADHD-Combined,Male,126,119,142,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2115.0186 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2098.8 +,3917422,8.19,ADHD-Combined,Male,126,119,142,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6278.055 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6312.7 +,3917422,8.19,ADHD-Combined,Male,126,119,142,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9163.081 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8530.2 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4112.3 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,426.1 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.7 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1670524.0 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,229.7 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,217668.75 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,312748.38 +,3917422,8.19,ADHD-Combined,Male,126,119,142,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,489.0043 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,839.1 +,3917422,8.19,ADHD-Combined,Male,126,119,142,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,913.00806 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1940.7 +,3917422,8.19,ADHD-Combined,Male,126,119,142,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5339.047 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5019.8 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63509.7 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14024.9 +,3917422,8.19,ADHD-Combined,Male,126,119,142,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4125.0366 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3771.8 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,537.4 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6982.8 +,3917422,8.19,ADHD-Combined,Male,126,119,142,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1850.0164 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1980.4 +,3917422,8.19,ADHD-Combined,Male,126,119,142,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6465.057 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6254.9 +,3917422,8.19,ADHD-Combined,Male,126,119,142,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8449.074 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8376.4 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4291.6 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,557.0 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,32.9 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66382.0 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1129273.0 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1144131.0 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1127438.0 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,435257.06 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,626333.94 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,822004.94 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14858.0 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,941.1 +,3917422,8.19,ADHD-Combined,Male,126,119,142,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,215521.9 +,3917422,8.19,ADHD-Combined,Male,126,119,142,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,580434.06 +,3917422,8.19,ADHD-Combined,Male,126,119,142,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3917422,8.19,ADHD-Combined,Male,126,119,142,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,501369.44 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,875.9 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2376.6 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3972472,9.12,Typically Developing Children,Female,109,94,121,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3059473E7 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1230073.0 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1217824.0 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1218472.2 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18394.4 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1009.5 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,640.4 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,643.7 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,426.8 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,836.1 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,853.4 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1460914.5 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,199668.23 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,310193.7 +,3972472,9.12,Typically Developing Children,Female,109,94,121,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,473.99994 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,577.5 +,3972472,9.12,Typically Developing Children,Female,109,94,121,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,935.9999 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1685.3 +,3972472,9.12,Typically Developing Children,Female,109,94,121,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3714.9995 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3712.0 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58711.6 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12633.7 +,3972472,9.12,Typically Developing Children,Female,109,94,121,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3876.9995 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4097.8 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,476.9 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3572.3 +,3972472,9.12,Typically Developing Children,Female,109,94,121,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1627.9998 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1578.2 +,3972472,9.12,Typically Developing Children,Female,109,94,121,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5115.9995 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5254.6 +,3972472,9.12,Typically Developing Children,Female,109,94,121,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8159.999 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7264.6 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3868.5 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,265.9 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,40.5 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1571975.0 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,145.6 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,197569.17 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,313840.22 +,3972472,9.12,Typically Developing Children,Female,109,94,121,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,353.99997 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,687.4 +,3972472,9.12,Typically Developing Children,Female,109,94,121,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,847.9999 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1729.8 +,3972472,9.12,Typically Developing Children,Female,109,94,121,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3734.9995 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3804.4 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55785.4 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11823.0 +,3972472,9.12,Typically Developing Children,Female,109,94,121,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3941.9995 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4169.4 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,404.3 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3594.9 +,3972472,9.12,Typically Developing Children,Female,109,94,121,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1644.9998 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1629.8 +,3972472,9.12,Typically Developing Children,Female,109,94,121,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5149.9995 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4848.3 +,3972472,9.12,Typically Developing Children,Female,109,94,121,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8144.999 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7115.6 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4023.1 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,439.4 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,34.4 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57927.0 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1081741.2 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1090028.2 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1078463.0 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,397237.4 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,624033.9 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,797550.9 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8287.0 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,918.5 +,3972472,9.12,Typically Developing Children,Female,109,94,121,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,182503.98 +,3972472,9.12,Typically Developing Children,Female,109,94,121,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,618985.94 +,3972472,9.12,Typically Developing Children,Female,109,94,121,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3972472,9.12,Typically Developing Children,Female,109,94,121,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,454923.94 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,987.2 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2018.6 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3972956,10.12,Typically Developing Children,Male,131,127,134,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3055162E7 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1267185.0 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1248055.0 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1248540.6 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21572.9 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,842.7 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,575.8 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,450.7 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,578.0 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,955.7 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,999.4 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1513626.0 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,212576.23 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,295394.0 +,3972956,10.12,Typically Developing Children,Male,131,127,134,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,566.00165 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,680.1 +,3972956,10.12,Typically Developing Children,Male,131,127,134,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,946.0027 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1351.5 +,3972956,10.12,Typically Developing Children,Male,131,127,134,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3920.0112 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3923.2 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,67688.5 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14701.7 +,3972956,10.12,Typically Developing Children,Male,131,127,134,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3523.01 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3706.8 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,333.5 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8031.7 +,3972956,10.12,Typically Developing Children,Male,131,127,134,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1758.005 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2266.3 +,3972956,10.12,Typically Developing Children,Male,131,127,134,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5209.015 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6233.2 +,3972956,10.12,Typically Developing Children,Male,131,127,134,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9392.027 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8629.3 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3682.7 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,374.9 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,22.6 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1623962.0 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,184.0 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,211628.03 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,300107.4 +,3972956,10.12,Typically Developing Children,Male,131,127,134,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,438.00125 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,642.8 +,3972956,10.12,Typically Developing Children,Male,131,127,134,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1247.0035 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1629.3 +,3972956,10.12,Typically Developing Children,Male,131,127,134,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4242.012 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4226.8 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,69631.7 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13123.8 +,3972956,10.12,Typically Developing Children,Male,131,127,134,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3951.0112 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4054.7 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,486.1 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5970.6 +,3972956,10.12,Typically Developing Children,Male,131,127,134,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1917.0055 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2080.0 +,3972956,10.12,Typically Developing Children,Male,131,127,134,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5834.0166 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6131.6 +,3972956,10.12,Typically Developing Children,Male,131,127,134,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9132.026 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8538.1 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4016.1 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,484.0 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,37.9 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63739.0 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1085401.6 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1100694.6 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1082845.0 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,424204.25 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,595501.44 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,797578.44 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,15293.0 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,992.2 +,3972956,10.12,Typically Developing Children,Male,131,127,134,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,221423.62 +,3972956,10.12,Typically Developing Children,Male,131,127,134,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,690969.94 +,3972956,10.12,Typically Developing Children,Male,131,127,134,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3972956,10.12,Typically Developing Children,Male,131,127,134,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,510295.47 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,715.2 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1301.3 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,http://purl.org/nidash/fsl#,Background (mm^3),,,9324274.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1295854.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1284542.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1285353.6 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17230.6 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,865.7 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,748.9 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,606.5 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,459.2 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,919.6 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,893.3 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1587213.6 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,238805.73 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,310724.88 +,3993793,10.33,Typically Developing Children,Male,123,112,128,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,677.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,604.4 +,3993793,10.33,Typically Developing Children,Male,123,112,128,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1287.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1555.9 +,3993793,10.33,Typically Developing Children,Male,123,112,128,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3198.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4076.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,50079.6 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11375.9 +,3993793,10.33,Typically Developing Children,Male,123,112,128,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3746.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3643.6 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,364.6 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3860.1 +,3993793,10.33,Typically Developing Children,Male,123,112,128,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1754.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2273.6 +,3993793,10.33,Typically Developing Children,Male,123,112,128,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5593.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6008.9 +,3993793,10.33,Typically Developing Children,Male,123,112,128,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7463.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8124.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3494.1 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,362.1 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.1 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1662423.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,129.6 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,239314.64 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,312853.38 +,3993793,10.33,Typically Developing Children,Male,123,112,128,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,485.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,577.5 +,3993793,10.33,Typically Developing Children,Male,123,112,128,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1275.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1777.6 +,3993793,10.33,Typically Developing Children,Male,123,112,128,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3116.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4277.4 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,50040.4 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10677.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4170.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3965.8 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,390.1 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3692.8 +,3993793,10.33,Typically Developing Children,Male,123,112,128,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1768.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1802.5 +,3993793,10.33,Typically Developing Children,Male,123,112,128,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5400.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6072.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7442.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7577.9 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3711.5 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,390.1 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,23.5 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61027.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1165128.6 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1173666.6 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1161825.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,478120.38 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,623578.25 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,785941.25 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8538.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1310.2 +,3993793,10.33,Typically Developing Children,Male,123,112,128,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,209083.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,726202.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3993793,10.33,Typically Developing Children,Male,123,112,128,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,560816.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1028.3 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2068.4 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,http://purl.org/nidash/fsl#,Background (mm^3),,,9321314.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1213638.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1196137.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1196982.6 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19301.6 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,620.8 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,583.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,555.9 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,499.7 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,723.2 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,864.1 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1587679.6 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,215107.98 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,280220.66 +,3994098,12.75,Typically Developing Children,Male,115,104,121,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,562.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,687.7 +,3994098,12.75,Typically Developing Children,Male,115,104,121,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1013.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1688.8 +,3994098,12.75,Typically Developing Children,Male,115,104,121,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3602.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3623.1 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59054.9 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13090.6 +,3994098,12.75,Typically Developing Children,Male,115,104,121,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4080.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3983.6 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,565.3 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6414.5 +,3994098,12.75,Typically Developing Children,Male,115,104,121,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1901.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1845.9 +,3994098,12.75,Typically Developing Children,Male,115,104,121,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5304.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5438.3 +,3994098,12.75,Typically Developing Children,Male,115,104,121,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8180.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8105.3 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3944.1 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,381.7 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.8 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1620862.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,217.9 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,214589.03 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,283003.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,434.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,571.8 +,3994098,12.75,Typically Developing Children,Male,115,104,121,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1765.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1676.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3816.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3763.7 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59350.5 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12651.3 +,3994098,12.75,Typically Developing Children,Male,115,104,121,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4243.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4533.1 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,472.1 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5406.5 +,3994098,12.75,Typically Developing Children,Male,115,104,121,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1786.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1714.3 +,3994098,12.75,Typically Developing Children,Male,115,104,121,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5452.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5497.7 +,3994098,12.75,Typically Developing Children,Male,115,104,121,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8196.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7981.7 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4017.8 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,645.3 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.4 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60475.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1055190.6 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1068813.6 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1052387.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,429697.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,563223.7 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,742575.7 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13623.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,925.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,211379.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,647438.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3994098,12.75,Typically Developing Children,Male,115,104,121,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,551516.0 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,670.0 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1263.9 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,3999344,9.27,Typically Developing Children,Female,116,98,134,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1111495E7 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1151427.0 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1138149.0 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1138378.8 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19234.8 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1347.6 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,618.3 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,685.0 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,546.2 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,982.1 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,856.9 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1363206.4 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,193321.27 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,275813.72 +,3999344,9.27,Typically Developing Children,Female,116,98,134,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,420.28058 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,809.7 +,3999344,9.27,Typically Developing Children,Female,116,98,134,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,562.59076 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1350.5 +,3999344,9.27,Typically Developing Children,Female,116,98,134,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3770.5552 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3884.7 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61306.1 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13766.2 +,3999344,9.27,Typically Developing Children,Female,116,98,134,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2725.1738 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3380.4 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,364.0 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5039.7 +,3999344,9.27,Typically Developing Children,Female,116,98,134,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1739.6423 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2136.4 +,3999344,9.27,Typically Developing Children,Female,116,98,134,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5010.1167 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5483.2 +,3999344,9.27,Typically Developing Children,Female,116,98,134,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7682.091 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7827.3 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4068.4 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,261.5 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,5.0 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1543326.0 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,151.3 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,191631.28 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,267002.53 +,3999344,9.27,Typically Developing Children,Female,116,98,134,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,526.6807 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,720.9 +,3999344,9.27,Typically Developing Children,Female,116,98,134,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,571.90076 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1849.9 +,3999344,9.27,Typically Developing Children,Female,116,98,134,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4157.586 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4204.5 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60979.3 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14093.7 +,3999344,9.27,Typically Developing Children,Female,116,98,134,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3544.4548 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3459.3 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,281.8 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4927.6 +,3999344,9.27,Typically Developing Children,Female,116,98,134,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1747.6224 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1849.8 +,3999344,9.27,Typically Developing Children,Female,116,98,134,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5570.048 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5609.2 +,3999344,9.27,Typically Developing Children,Female,116,98,134,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7340.2803 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7723.4 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3776.8 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,410.9 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,10.7 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60314.0 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,991333.8 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1002088.8 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,987692.0 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,384952.56 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,542816.25 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,725854.25 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10755.0 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,959.6 +,3999344,9.27,Typically Developing Children,Female,116,98,134,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,160773.28 +,3999344,9.27,Typically Developing Children,Female,116,98,134,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,683871.0 +,3999344,9.27,Typically Developing Children,Female,116,98,134,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,3999344,9.27,Typically Developing Children,Female,116,98,134,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,449335.8 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1054.5 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2484.7 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,4006710,14,ADHD-Inattentive,Male,92,83,106,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1488722E7 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1189894.0 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1173239.0 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1173568.9 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18782.0 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,853.4 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,710.4 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,629.5 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,452.5 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,930.4 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1056.0 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1467133.0 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,208713.31 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,274066.0 +,4006710,14,ADHD-Inattentive,Male,92,83,106,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,412.5 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,466.9 +,4006710,14,ADHD-Inattentive,Male,92,83,106,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1041.0 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1696.6 +,4006710,14,ADHD-Inattentive,Male,92,83,106,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3962.5 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4057.8 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63774.0 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12208.2 +,4006710,14,ADHD-Inattentive,Male,92,83,106,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3713.25 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4042.3 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,451.2 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5305.9 +,4006710,14,ADHD-Inattentive,Male,92,83,106,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1764.0 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1896.7 +,4006710,14,ADHD-Inattentive,Male,92,83,106,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4615.0 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5354.8 +,4006710,14,ADHD-Inattentive,Male,92,83,106,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7188.75 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7160.5 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4287.2 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,410.7 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1656165.0 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,124.0 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,207877.77 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,273553.8 +,4006710,14,ADHD-Inattentive,Male,92,83,106,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,274.5 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,514.5 +,4006710,14,ADHD-Inattentive,Male,92,83,106,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1183.75 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1869.1 +,4006710,14,ADHD-Inattentive,Male,92,83,106,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3921.75 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4088.4 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63222.0 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10860.5 +,4006710,14,ADHD-Inattentive,Male,92,83,106,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4174.75 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4133.4 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,300.9 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5799.6 +,4006710,14,ADHD-Inattentive,Male,92,83,106,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1673.25 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1795.0 +,4006710,14,ADHD-Inattentive,Male,92,83,106,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4809.0 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5272.4 +,4006710,14,ADHD-Inattentive,Male,92,83,106,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6880.5 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7068.4 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4123.9 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,370.9 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,3.2 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59322.0 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1025448.9 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1037583.9 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1023100.0 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,416591.06 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,547619.8 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,734723.8 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12135.0 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,482.0 +,4006710,14,ADHD-Inattentive,Male,92,83,106,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,215154.0 +,4006710,14,ADHD-Inattentive,Male,92,83,106,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,640636.5 +,4006710,14,ADHD-Inattentive,Male,92,83,106,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,4006710,14,ADHD-Inattentive,Male,92,83,106,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,576996.0 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,846.7 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1089.4 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,4048810,14.67,Typically Developing Children,Male,117,109,120,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1012648E7 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1231644.0 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1219299.0 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1218095.1 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20360.7 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,897.6 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,582.7 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,647.8 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,520.0 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1056.1 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,623.5 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1664168.8 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,218907.23 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,287724.34 +,4048810,14.67,Typically Developing Children,Male,117,109,120,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,599.41406 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,586.3 +,4048810,14.67,Typically Developing Children,Male,117,109,120,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,869.2383 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1702.9 +,4048810,14.67,Typically Developing Children,Male,117,109,120,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3443.5547 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3992.9 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,50413.2 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15744.3 +,4048810,14.67,Typically Developing Children,Male,117,109,120,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2986.5234 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4216.7 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,211.8 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4874.9 +,4048810,14.67,Typically Developing Children,Male,117,109,120,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1894.9219 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2492.0 +,4048810,14.67,Typically Developing Children,Male,117,109,120,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5686.5234 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6587.9 +,4048810,14.67,Typically Developing Children,Male,117,109,120,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7578.8086 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8310.3 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4692.9 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,316.1 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,17.1 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1669582.0 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,183.3 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,218462.52 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,289230.06 +,4048810,14.67,Typically Developing Children,Male,117,109,120,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,536.1328 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,650.6 +,4048810,14.67,Typically Developing Children,Male,117,109,120,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,975.58594 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1861.3 +,4048810,14.67,Typically Developing Children,Male,117,109,120,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3374.121 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3845.6 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57607.0 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11439.1 +,4048810,14.67,Typically Developing Children,Male,117,109,120,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3449.707 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4677.9 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,202.7 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4418.0 +,4048810,14.67,Typically Developing Children,Male,117,109,120,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1778.9062 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2396.0 +,4048810,14.67,Typically Developing Children,Male,117,109,120,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6178.711 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6458.2 +,4048810,14.67,Typically Developing Children,Male,117,109,120,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7200.0 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8446.7 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4620.4 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,297.3 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.5 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67408.0 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1086143.1 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1095962.1 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1082801.0 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,437369.75 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,576954.4 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,753745.4 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9819.0 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1861.9 +,4048810,14.67,Typically Developing Children,Male,117,109,120,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,192092.0 +,4048810,14.67,Typically Developing Children,Male,117,109,120,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,733924.5 +,4048810,14.67,Typically Developing Children,Male,117,109,120,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,4048810,14.67,Typically Developing Children,Male,117,109,120,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,554453.6 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,660.7 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1775.8 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,http://purl.org/nidash/fsl#,Background (mm^3),,,9322484.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1225399.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1208711.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1209742.5 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18888.1 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,944.6 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,573.8 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,449.6 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,504.4 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,870.5 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,570.5 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1571444.6 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,197962.95 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,308085.5 +,4053388,11.08,ADHD-Combined,Male,86,101,75,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,576.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,629.9 +,4053388,11.08,ADHD-Combined,Male,86,101,75,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,801.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1497.4 +,4053388,11.08,ADHD-Combined,Male,86,101,75,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3918.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3916.3 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56332.4 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13327.2 +,4053388,11.08,ADHD-Combined,Male,86,101,75,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3626.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3959.4 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,414.1 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5370.1 +,4053388,11.08,ADHD-Combined,Male,86,101,75,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1608.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2516.1 +,4053388,11.08,ADHD-Combined,Male,86,101,75,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5780.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5459.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8147.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8292.5 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4140.6 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,199.5 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.8 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1605925.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,86.3 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,196297.33 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,306208.7 +,4053388,11.08,ADHD-Combined,Male,86,101,75,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,333.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,572.5 +,4053388,11.08,ADHD-Combined,Male,86,101,75,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1454.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1796.9 +,4053388,11.08,ADHD-Combined,Male,86,101,75,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3879.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3983.4 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56733.8 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11477.5 +,4053388,11.08,ADHD-Combined,Male,86,101,75,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3293.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3999.9 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,622.7 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7244.5 +,4053388,11.08,ADHD-Combined,Male,86,101,75,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1751.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2003.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5930.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6112.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8068.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8122.4 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4083.9 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,403.3 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,31.2 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62744.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1073891.5 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1087677.5 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1070225.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,394260.28 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,614294.2 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,791459.2 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13786.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,769.7 +,4053388,11.08,ADHD-Combined,Male,86,101,75,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,191330.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,729030.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,4053388,11.08,ADHD-Combined,Male,86,101,75,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,514475.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,714.7 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1779.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,http://purl.org/nidash/fsl#,Background (mm^3),,,9326807.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1304400.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1289974.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1290945.8 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21481.4 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,790.9 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,675.1 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,615.2 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,605.3 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,953.1 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,590.7 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1648232.8 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,242028.39 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,294296.3 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,472.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,563.4 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,737.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1957.8 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3369.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4198.3 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57085.9 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13288.4 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2513.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4320.8 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,328.4 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6053.7 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1975.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2012.2 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5693.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5985.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7464.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7898.1 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4310.7 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,444.1 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,28.3 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1710757.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,192.1 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,246676.55 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,302278.53 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,400.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,659.4 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1175.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2185.3 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3160.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4308.4 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58056.2 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12148.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3275.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4732.8 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,391.5 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4151.9 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1870.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1931.9 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5481.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5920.4 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7257.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8260.6 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4570.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,416.2 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,26.1 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65278.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1152828.8 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1164272.8 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1149448.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,488704.94 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,596574.8 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,777689.8 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11444.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,797.8 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,194001.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,708801.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,1.0 +,4055710,13.33,ADHD-Inattentive,Male,133,139,124,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,590492.0 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,915.5 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2286.6 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1107437E7 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1219027.0 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1200729.0 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1200508.5 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20530.4 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1014.0 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,508.3 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,731.1 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,647.7 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1028.6 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,668.8 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1450176.9 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,215771.1 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,275461.7 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,599.8308 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,670.6 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,896.42126 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1631.8 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3974.0454 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3943.8 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62724.0 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13713.6 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3882.2754 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4152.1 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,440.3 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6695.8 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1968.4027 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2393.0 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5560.738 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5709.1 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8285.911 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7837.4 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4726.2 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,571.5 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1546122.0 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,192.3 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,216469.53 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,276868.12 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,418.95056 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,662.4 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,908.39124 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1852.1 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4145.6157 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4077.1 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61026.5 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14285.6 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3919.5154 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4150.3 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,455.6 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6299.0 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1883.2826 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2009.4 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5398.4775 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5685.5 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7585.0005 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7953.6 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4571.5 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,812.2 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64453.0 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1052755.5 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1067528.5 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1049095.0 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,432240.62 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,552329.8 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,740775.8 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14773.0 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,939.0 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,147555.72 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,698935.94 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,4060823,11.8,ADHD-Inattentive,Male,95,107,85,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,505231.78 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,945.1 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2180.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,http://purl.org/nidash/fsl#,Background (mm^3),,,9315198.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1305726.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1289238.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1290221.6 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22177.6 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,815.6 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,511.5 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,510.4 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,512.7 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1038.7 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1037.9 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1651754.1 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,235040.88 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,299670.94 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,763.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,751.1 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1190.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1862.6 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4633.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4632.2 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60595.9 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14369.6 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3977.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4130.4 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,403.8 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4792.1 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2107.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2395.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6073.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5986.5 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9485.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8472.9 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4444.7 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,357.1 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,12.9 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1736095.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,245.7 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,236177.97 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,302010.9 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,630.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,669.2 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1070.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1899.9 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5011.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4958.8 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61446.5 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13881.3 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3921.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4499.6 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,418.5 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6435.5 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2223.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2290.9 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6137.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6073.7 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9230.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8403.4 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4313.6 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,488.7 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,23.9 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67322.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1142140.6 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1154614.6 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1139038.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,471218.84 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,601681.8 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,791621.8 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12474.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,592.7 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,232145.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,673305.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,4073815,9.83,ADHD-Inattentive,Male,114,112,113,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,555326.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,952.2 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1685.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,http://purl.org/nidash/fsl#,Background (mm^3),,,9322728.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1301572.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1290093.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1291044.2 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20247.6 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,672.2 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,738.4 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,617.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,461.4 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,723.1 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,807.4 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1622118.8 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,230969.58 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,305191.84 +,4075719,13.08,ADHD-Combined,Male,114,95,128,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,537.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,610.4 +,4075719,13.08,ADHD-Combined,Male,114,95,128,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1360.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1868.6 +,4075719,13.08,ADHD-Combined,Male,114,95,128,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3870.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4001.1 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61066.2 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13792.4 +,4075719,13.08,ADHD-Combined,Male,114,95,128,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3735.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4448.5 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,641.9 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3249.5 +,4075719,13.08,ADHD-Combined,Male,114,95,128,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1800.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2290.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5699.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6204.2 +,4075719,13.08,ADHD-Combined,Male,114,95,128,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7183.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9715.8 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4271.7 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,323.8 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,9.9 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1713537.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,104.6 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,231981.75 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,305704.1 +,4075719,13.08,ADHD-Combined,Male,114,95,128,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,353.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,532.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1125.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2031.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4022.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4289.3 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60457.5 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13147.4 +,4075719,13.08,ADHD-Combined,Male,114,95,128,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4414.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4715.9 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,381.1 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3445.9 +,4075719,13.08,ADHD-Combined,Male,114,95,128,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1836.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2004.4 +,4075719,13.08,ADHD-Combined,Male,114,95,128,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5465.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5878.3 +,4075719,13.08,ADHD-Combined,Male,114,95,128,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7521.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9941.6 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4139.1 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,431.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,32.1 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68541.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1144740.2 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1152823.2 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1141371.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,462951.3 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,610895.94 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,802004.94 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8083.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1122.1 +,4075719,13.08,ADHD-Combined,Male,114,95,128,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,213043.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,719883.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,4075719,13.08,ADHD-Combined,Male,114,95,128,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,574931.0 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,693.1 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2005.6 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,4079254,10.19,Typically Developing Children,Male,115,106,119,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1111139E7 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1265796.0 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1252465.0 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1252825.8 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18320.1 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,898.4 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,663.9 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,654.1 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,519.8 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,471.1 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,874.5 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1588514.9 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,217974.31 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,305374.6 +,4079254,10.19,Typically Developing Children,Male,115,106,119,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,156.94022 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,823.4 +,4079254,10.19,Typically Developing Children,Male,115,106,119,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,707.561 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1369.1 +,4079254,10.19,Typically Developing Children,Male,115,106,119,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3866.3154 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3889.6 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60683.5 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13495.2 +,4079254,10.19,Typically Developing Children,Male,115,106,119,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3444.7048 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3776.5 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,279.0 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4582.1 +,4079254,10.19,Typically Developing Children,Male,115,106,119,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1601.3223 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2001.8 +,4079254,10.19,Typically Developing Children,Male,115,106,119,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5010.1167 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5397.7 +,4079254,10.19,Typically Developing Children,Male,115,106,119,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8051.831 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8633.2 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3370.1 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,373.5 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,15.3 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1634353.0 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,149.8 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,219149.52 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,305151.25 +,4079254,10.19,Typically Developing Children,Male,115,106,119,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,456.1906 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,594.9 +,4079254,10.19,Typically Developing Children,Male,115,106,119,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,674.3109 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1612.1 +,4079254,10.19,Typically Developing Children,Male,115,106,119,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3234.5645 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4112.4 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57577.8 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12568.2 +,4079254,10.19,Typically Developing Children,Male,115,106,119,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3628.245 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4008.4 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,306.2 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4403.6 +,4079254,10.19,Typically Developing Children,Male,115,106,119,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1638.5623 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1739.7 +,4079254,10.19,Typically Developing Children,Male,115,106,119,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5325.327 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5590.5 +,4079254,10.19,Typically Developing Children,Male,115,106,119,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7929.4707 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7789.6 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3637.5 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,528.9 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60476.0 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1111456.8 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1121429.8 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1107659.0 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,437123.84 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,610525.9 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,790463.9 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9973.0 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1026.6 +,4079254,10.19,Typically Developing Children,Male,115,106,119,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,168470.0 +,4079254,10.19,Typically Developing Children,Male,115,106,119,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,762317.1 +,4079254,10.19,Typically Developing Children,Male,115,106,119,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,4079254,10.19,Typically Developing Children,Male,115,106,119,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,506447.4 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,659.6 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1566.6 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,4084645,7.63,Typically Developing Children,Female,111,108,110,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1115868E7 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,967979.0 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,958251.0 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,957573.94 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15644.5 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,899.1 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,617.0 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,660.3 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,636.2 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,875.1 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,684.0 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1064238.8 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,167874.36 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,228295.14 +,4084645,7.63,Typically Developing Children,Female,111,108,110,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,268.66037 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,590.0 +,4084645,7.63,Typically Developing Children,Female,111,108,110,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,634.4109 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1086.1 +,4084645,7.63,Typically Developing Children,Female,111,108,110,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3976.7056 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3627.8 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,48039.7 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13302.3 +,4084645,7.63,Typically Developing Children,Female,111,108,110,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,1932.4927 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2983.1 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,348.4 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3359.5 +,4084645,7.63,Typically Developing Children,Female,111,108,110,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1568.0721 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1668.0 +,4084645,7.63,Typically Developing Children,Female,111,108,110,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5202.9673 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5059.7 +,4084645,7.63,Typically Developing Children,Female,111,108,110,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,5866.638 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6819.3 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3250.6 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,239.1 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.5 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1308787.0 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,109.0 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,167726.53 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,220874.89 +,4084645,7.63,Typically Developing Children,Female,111,108,110,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,154.28021 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,661.1 +,4084645,7.63,Typically Developing Children,Female,111,108,110,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,510.7207 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1202.8 +,4084645,7.63,Typically Developing Children,Female,111,108,110,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3895.5754 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3982.9 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,47855.3 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12340.2 +,4084645,7.63,Typically Developing Children,Female,111,108,110,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3055.0142 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3045.1 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,275.7 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2572.5 +,4084645,7.63,Typically Developing Children,Female,111,108,110,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1576.0521 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1490.2 +,4084645,7.63,Typically Developing Children,Female,111,108,110,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5165.727 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5125.7 +,4084645,7.63,Typically Developing Children,Female,111,108,110,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7188.6597 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6642.8 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3116.8 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,460.2 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.4 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,51760.0 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,838997.94 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,845918.94 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,837122.0 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,335600.88 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,449170.03 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,597130.0 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6921.0 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1210.7 +,4084645,7.63,Typically Developing Children,Female,111,108,110,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,135426.11 +,4084645,7.63,Typically Developing Children,Female,111,108,110,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,605402.2 +,4084645,7.63,Typically Developing Children,Female,111,108,110,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,4084645,7.63,Typically Developing Children,Female,111,108,110,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,395458.75 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,664.5 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,484.1 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,4095229,9.32,ADHD-Combined,Male,95,92,99,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1139369E7 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,979718.0 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,969486.0 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,967891.0 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,10167.5 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,950.1 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,622.6 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,567.0 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,636.5 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,855.8 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,840.8 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1139467.2 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,182437.3 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,232632.5 +,4095229,9.32,ADHD-Combined,Male,95,92,99,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,164.92023 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,592.7 +,4095229,9.32,ADHD-Combined,Male,95,92,99,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,349.79047 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,378.4 +,4095229,9.32,ADHD-Combined,Male,95,92,99,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,1625.2622 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3469.7 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,32519.1 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,6699.7 +,4095229,9.32,ADHD-Combined,Male,95,92,99,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,738.151 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,1515.9 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,9.8 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4227.7 +,4095229,9.32,ADHD-Combined,Male,95,92,99,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,803.3211 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1844.8 +,4095229,9.32,ADHD-Combined,Male,95,92,99,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,1403.152 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5902.9 +,4095229,9.32,ADHD-Combined,Male,95,92,99,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,3434.0647 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7020.9 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3162.6 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,345.4 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,32.1 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1495038.0 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,67.0 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,186575.3 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,233044.92 +,4095229,9.32,ADHD-Combined,Male,95,92,99,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,135.66019 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,627.8 +,4095229,9.32,ADHD-Combined,Male,95,92,99,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,331.17047 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1415.9 +,4095229,9.32,ADHD-Combined,Male,95,92,99,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,1775.5525 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3520.3 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,30866.1 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,5070.2 +,4095229,9.32,ADHD-Combined,Male,95,92,99,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,1259.5117 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3512.2 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,517.6 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3306.0 +,4095229,9.32,ADHD-Combined,Male,95,92,99,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,708.891 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1804.7 +,4095229,9.32,ADHD-Combined,Male,95,92,99,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,1377.8818 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6327.5 +,4095229,9.32,ADHD-Combined,Male,95,92,99,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,3387.5146 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7101.8 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3370.2 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,533.1 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,4.8 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,53563.0 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,895262.0 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,903608.0 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,889801.0 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,369012.6 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,465677.44 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,587737.44 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8346.0 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2941.1 +,4095229,9.32,ADHD-Combined,Male,95,92,99,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,208525.67 +,4095229,9.32,ADHD-Combined,Male,95,92,99,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,613411.5 +,4095229,9.32,ADHD-Combined,Male,95,92,99,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,4095229,9.32,ADHD-Combined,Male,95,92,99,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,447085.44 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,673.6 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1392.1 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,4104523,12.43,Typically Developing Children,Male,101,98,112,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3060822E7 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1149900.0 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1137634.0 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1138362.1 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20597.3 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,630.5 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,522.7 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,389.1 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,436.4 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,754.5 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,693.8 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1438428.6 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,186807.9 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,282868.84 +,4104523,12.43,Typically Developing Children,Male,101,98,112,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,537.9998 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,628.9 +,4104523,12.43,Typically Developing Children,Male,101,98,112,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,969.9997 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1491.4 +,4104523,12.43,Typically Developing Children,Male,101,98,112,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3645.999 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3571.1 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56767.7 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13760.9 +,4104523,12.43,Typically Developing Children,Male,101,98,112,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3640.999 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3514.2 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,521.9 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4404.7 +,4104523,12.43,Typically Developing Children,Male,101,98,112,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1667.9995 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1551.1 +,4104523,12.43,Typically Developing Children,Male,101,98,112,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4863.9985 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4913.3 +,4104523,12.43,Typically Developing Children,Male,101,98,112,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7848.9976 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7338.7 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3758.9 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,396.7 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,23.2 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1515684.0 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,191.0 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,186252.45 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,284030.84 +,4104523,12.43,Typically Developing Children,Male,101,98,112,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,295.9999 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,611.2 +,4104523,12.43,Typically Developing Children,Male,101,98,112,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1069.9996 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1592.3 +,4104523,12.43,Typically Developing Children,Male,101,98,112,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4012.9988 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3863.0 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57390.3 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13370.2 +,4104523,12.43,Typically Developing Children,Male,101,98,112,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3566.999 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3497.1 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,598.5 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3425.8 +,4104523,12.43,Typically Developing Children,Male,101,98,112,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1725.9995 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1464.1 +,4104523,12.43,Typically Developing Children,Male,101,98,112,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4785.9985 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4912.1 +,4104523,12.43,Typically Developing Children,Male,101,98,112,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7739.9976 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7352.1 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3770.9 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,638.8 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,17.9 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55541.0 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,998032.06 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1007686.06 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,994671.0 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,373060.38 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,566899.7 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,738884.7 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9654.0 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,620.7 +,4104523,12.43,Typically Developing Children,Male,101,98,112,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,176322.95 +,4104523,12.43,Typically Developing Children,Male,101,98,112,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,653197.8 +,4104523,12.43,Typically Developing Children,Male,101,98,112,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,4104523,12.43,Typically Developing Children,Male,101,98,112,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,452446.88 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,660.1 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,998.5 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,4116166,10.81,ADHD-Combined,Female,108,93,122,http://purl.org/nidash/fsl#,Background (mm^3),,,1.11286E7 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1292147.0 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1282209.0 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1281745.8 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18479.2 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1157.2 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,827.6 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,886.6 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,606.1 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,952.6 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,843.2 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1513272.4 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,226540.52 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,312214.28 +,4116166,10.81,ADHD-Combined,Female,108,93,122,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,288.6104 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,785.4 +,4116166,10.81,ADHD-Combined,Female,108,93,122,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,488.11066 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1783.3 +,4116166,10.81,ADHD-Combined,Female,108,93,122,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2675.9636 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3827.8 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53361.4 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,18055.7 +,4116166,10.81,ADHD-Combined,Female,108,93,122,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,1312.7118 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4258.0 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,383.3 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3867.1 +,4116166,10.81,ADHD-Combined,Female,108,93,122,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1194.3417 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1937.5 +,4116166,10.81,ADHD-Combined,Female,108,93,122,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,2699.9038 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5514.7 +,4116166,10.81,ADHD-Combined,Female,108,93,122,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,5245.5273 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7857.1 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4263.4 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,347.4 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,6.8 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1683897.0 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,172.0 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,228856.66 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,312893.28 +,4116166,10.81,ADHD-Combined,Female,108,93,122,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,297.9204 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,742.9 +,4116166,10.81,ADHD-Combined,Female,108,93,122,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,328.51044 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1885.2 +,4116166,10.81,ADHD-Combined,Female,108,93,122,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2556.2634 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3838.7 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,50466.7 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,16531.6 +,4116166,10.81,ADHD-Combined,Female,108,93,122,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,1078.6315 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3986.4 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,230.9 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3007.0 +,4116166,10.81,ADHD-Combined,Female,108,93,122,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1133.1616 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1781.3 +,4116166,10.81,ADHD-Combined,Female,108,93,122,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,3761.245 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5688.8 +,4116166,10.81,ADHD-Combined,Female,108,93,122,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,5202.9673 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7956.2 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4160.8 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,380.9 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,3.7 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62203.0 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1147442.8 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1155131.8 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1143044.0 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,455397.2 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,625107.56 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,792283.56 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7689.0 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1624.1 +,4116166,10.81,ADHD-Combined,Female,108,93,122,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,163618.16 +,4116166,10.81,ADHD-Combined,Female,108,93,122,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,746524.7 +,4116166,10.81,ADHD-Combined,Female,108,93,122,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,4116166,10.81,ADHD-Combined,Female,108,93,122,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,493489.2 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,836.9 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2407.7 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,4136226,11.25,Typically Developing Children,Male,117,118,112,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1009394E7 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1182079.0 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1170931.0 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1170760.6 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19434.0 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,673.9 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,727.3 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,619.0 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,490.0 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,955.1 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,709.8 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1537755.2 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,199014.75 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,281892.1 +,4136226,11.25,Typically Developing Children,Male,117,118,112,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,598.53516 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,523.2 +,4136226,11.25,Typically Developing Children,Male,117,118,112,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1198.8281 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1691.3 +,4136226,11.25,Typically Developing Children,Male,117,118,112,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3930.4688 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3779.1 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59241.5 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12169.7 +,4136226,11.25,Typically Developing Children,Male,117,118,112,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3486.621 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4276.2 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,130.5 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3473.7 +,4136226,11.25,Typically Developing Children,Male,117,118,112,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1731.4453 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2104.9 +,4136226,11.25,Typically Developing Children,Male,117,118,112,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6590.918 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5899.2 +,4136226,11.25,Typically Developing Children,Male,117,118,112,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7998.926 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7268.2 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4204.7 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,228.2 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,31.1 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1622267.0 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,138.1 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,199564.33 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,284562.47 +,4136226,11.25,Typically Developing Children,Male,117,118,112,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,357.71484 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,612.0 +,4136226,11.25,Typically Developing Children,Male,117,118,112,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1212.8906 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1770.0 +,4136226,11.25,Typically Developing Children,Male,117,118,112,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3728.3203 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3796.7 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60052.1 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12279.1 +,4136226,11.25,Typically Developing Children,Male,117,118,112,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3517.3828 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4408.3 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,86.4 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3700.5 +,4136226,11.25,Typically Developing Children,Male,117,118,112,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1790.332 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1932.2 +,4136226,11.25,Typically Developing Children,Male,117,118,112,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5784.961 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5901.6 +,4136226,11.25,Typically Developing Children,Male,117,118,112,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7878.5156 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7856.6 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4243.1 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,185.7 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.3 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61697.0 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1029407.6 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1036663.6 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1026791.0 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,398579.06 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,566454.56 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,748607.56 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7256.0 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1208.3 +,4136226,11.25,Typically Developing Children,Male,117,118,112,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,173057.52 +,4136226,11.25,Typically Developing Children,Male,117,118,112,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,721604.0 +,4136226,11.25,Typically Developing Children,Male,117,118,112,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,4136226,11.25,Typically Developing Children,Male,117,118,112,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,513521.2 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,827.2 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2523.0 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,4154182,9.75,Typically Developing Children,Female,111,123,106,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3057858E7 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1264415.0 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1249925.0 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1250717.4 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19329.1 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1005.4 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,555.9 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,595.5 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,610.6 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1017.6 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,878.2 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1460538.6 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,211144.75 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,315296.0 +,4154182,9.75,Typically Developing Children,Female,111,123,106,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,548.9966 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,723.8 +,4154182,9.75,Typically Developing Children,Female,111,123,106,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,942.99414 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1751.5 +,4154182,9.75,Typically Developing Children,Female,111,123,106,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3645.9773 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3695.2 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58024.3 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11437.2 +,4154182,9.75,Typically Developing Children,Female,111,123,106,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3895.9758 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4062.2 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,743.3 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4791.7 +,4154182,9.75,Typically Developing Children,Female,111,123,106,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1842.9885 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2012.2 +,4154182,9.75,Typically Developing Children,Female,111,123,106,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5440.9663 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5599.4 +,4154182,9.75,Typically Developing Children,Female,111,123,106,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8403.948 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7753.3 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3985.8 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,400.5 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,16.4 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1658014.0 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,129.6 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,211505.95 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,315575.62 +,4154182,9.75,Typically Developing Children,Female,111,123,106,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,256.9984 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,799.2 +,4154182,9.75,Typically Developing Children,Female,111,123,106,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1147.9929 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1955.5 +,4154182,9.75,Typically Developing Children,Female,111,123,106,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4175.974 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4082.4 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56454.5 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11103.0 +,4154182,9.75,Typically Developing Children,Female,111,123,106,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3744.9768 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4147.3 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,495.7 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3970.7 +,4154182,9.75,Typically Developing Children,Female,111,123,106,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1756.9891 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2077.1 +,4154182,9.75,Typically Developing Children,Female,111,123,106,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5331.967 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5448.2 +,4154182,9.75,Typically Developing Children,Female,111,123,106,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8123.9497 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7715.7 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3840.9 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,481.9 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,16.3 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61669.0 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1116651.4 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1127067.4 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1114311.0 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,422650.72 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,630871.6 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,806716.6 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10416.0 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,709.1 +,4154182,9.75,Typically Developing Children,Female,111,123,106,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,195970.8 +,4154182,9.75,Typically Developing Children,Female,111,123,106,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,708991.6 +,4154182,9.75,Typically Developing Children,Female,111,123,106,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,4154182,9.75,Typically Developing Children,Female,111,123,106,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,503202.88 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,826.6 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1235.7 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,4154672,9.23,ADHD-Combined,Male,119,117,118,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1110855E7 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1220647.0 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1198809.0 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1199019.9 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18208.1 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1098.8 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,461.5 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,497.5 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,511.5 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,924.1 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1081.7 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1514212.4 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,204929.06 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,291199.88 +,4154672,9.23,ADHD-Combined,Male,119,117,118,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,504.07068 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,530.6 +,4154672,9.23,ADHD-Combined,Male,119,117,118,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,788.6911 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1405.1 +,4154672,9.23,ADHD-Combined,Male,119,117,118,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3467.3147 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3607.9 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62479.3 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14116.9 +,4154672,9.23,ADHD-Combined,Male,119,117,118,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3527.1648 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3612.1 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,362.3 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,9890.6 +,4154672,9.23,ADHD-Combined,Male,119,117,118,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1842.0525 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1848.4 +,4154672,9.23,ADHD-Combined,Male,119,117,118,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5160.407 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5337.8 +,4154672,9.23,ADHD-Combined,Male,119,117,118,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7749.921 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7281.4 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4122.0 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,453.3 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1563086.0 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,173.2 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,204506.25 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,289990.7 +,4154672,9.23,ADHD-Combined,Male,119,117,118,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,349.79047 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,426.6 +,4154672,9.23,ADHD-Combined,Male,119,117,118,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,823.2711 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1502.7 +,4154672,9.23,ADHD-Combined,Male,119,117,118,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3701.395 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3748.5 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61061.8 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12814.3 +,4154672,9.23,ADHD-Combined,Male,119,117,118,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3382.1946 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3958.3 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,567.0 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7544.8 +,4154672,9.23,ADHD-Combined,Male,119,117,118,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1764.9125 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1685.9 +,4154672,9.23,ADHD-Combined,Male,119,117,118,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5244.1973 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5282.1 +,4154672,9.23,ADHD-Combined,Male,119,117,118,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7703.3706 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7166.4 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4043.9 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,575.2 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,4.0 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57537.0 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1051533.9 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1070415.9 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1047805.0 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,409435.3 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,581190.56 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,763146.56 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,18882.0 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,730.9 +,4154672,9.23,ADHD-Combined,Male,119,117,118,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,154067.4 +,4154672,9.23,ADHD-Combined,Male,119,117,118,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,737967.5 +,4154672,9.23,ADHD-Combined,Male,119,117,118,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,4154672,9.23,ADHD-Combined,Male,119,117,118,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,473714.72 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1077.0 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1438.3 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,4164316,10.69,Typically Developing Children,Male,80,72,92,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1116791E7 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1135372.0 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1122165.0 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1121905.9 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16890.9 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,821.7 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,514.4 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,577.1 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,403.7 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,766.5 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,982.3 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1379870.2 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,201765.6 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,260533.58 +,4164316,10.69,Typically Developing Children,Male,80,72,92,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,363.0884 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,774.6 +,4164316,10.69,Typically Developing Children,Male,80,72,92,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,631.74725 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1375.6 +,4164316,10.69,Typically Developing Children,Male,80,72,92,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3287.7456 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3383.7 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54762.8 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14282.9 +,4164316,10.69,Typically Developing Children,Male,80,72,92,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3001.7969 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3539.4 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,283.6 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5057.8 +,4164316,10.69,Typically Developing Children,Male,80,72,92,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1429.7438 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1754.3 +,4164316,10.69,Typically Developing Children,Male,80,72,92,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4496.7104 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4513.3 +,4164316,10.69,Typically Developing Children,Male,80,72,92,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6358.702 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7727.3 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3808.2 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,425.0 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,4.0 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1618532.0 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,162.9 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,202792.58 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,263895.1 +,4164316,10.69,Typically Developing Children,Male,80,72,92,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,341.8085 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,713.0 +,4164316,10.69,Typically Developing Children,Male,80,72,92,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1085.2753 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1664.5 +,4164316,10.69,Typically Developing Children,Male,80,72,92,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3286.4158 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3738.4 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54019.1 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13947.2 +,4164316,10.69,Typically Developing Children,Male,80,72,92,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2923.3271 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3701.3 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,417.2 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3785.5 +,4164316,10.69,Typically Developing Children,Male,80,72,92,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1642.5428 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1636.7 +,4164316,10.69,Typically Developing Children,Male,80,72,92,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4281.2515 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4811.4 +,4164316,10.69,Typically Developing Children,Male,80,72,92,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6878.73 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7072.5 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3538.1 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,402.3 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,9.6 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55758.0 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,987390.8 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,997232.8 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,984846.0 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,404558.16 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,524428.7 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,689655.7 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9842.0 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1987.5 +,4164316,10.69,Typically Developing Children,Male,80,72,92,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,213256.6 +,4164316,10.69,Typically Developing Children,Male,80,72,92,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,675605.1 +,4164316,10.69,Typically Developing Children,Male,80,72,92,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,4164316,10.69,Typically Developing Children,Male,80,72,92,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,472737.12 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,801.9 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2314.5 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,4187857,13.28,ADHD-Combined,Male,109,111,105,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1107206E7 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1280228.0 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1267296.0 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1267550.2 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20074.8 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,867.0 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,476.6 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,567.5 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,526.0 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,741.6 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,850.0 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1566344.9 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,224005.19 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,303839.5 +,4187857,13.28,ADHD-Combined,Male,109,111,105,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,687.61096 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,885.4 +,4187857,13.28,ADHD-Combined,Male,109,111,105,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,647.7109 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1553.3 +,4187857,13.28,ADHD-Combined,Male,109,111,105,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3795.8252 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3913.3 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62902.7 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13569.9 +,4187857,13.28,ADHD-Combined,Male,109,111,105,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4065.8157 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3993.7 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,325.0 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4095.4 +,4187857,13.28,ADHD-Combined,Male,109,111,105,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1443.052 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2000.6 +,4187857,13.28,ADHD-Combined,Male,109,111,105,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5613.9375 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6180.6 +,4187857,13.28,ADHD-Combined,Male,109,111,105,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8433.542 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7227.0 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3912.0 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,441.8 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,29.5 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1631592.0 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,107.3 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,221874.81 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,303754.75 +,4187857,13.28,ADHD-Combined,Male,109,111,105,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,633.0809 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,913.6 +,4187857,13.28,ADHD-Combined,Male,109,111,105,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,466.83063 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1766.0 +,4187857,13.28,ADHD-Combined,Male,109,111,105,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4342.456 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4378.4 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62987.4 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13033.8 +,4187857,13.28,ADHD-Combined,Male,109,111,105,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3407.4646 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4360.4 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,363.1 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3675.0 +,4187857,13.28,ADHD-Combined,Male,109,111,105,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1855.3525 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1825.6 +,4187857,13.28,ADHD-Combined,Male,109,111,105,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5995.6484 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6208.3 +,4187857,13.28,ADHD-Combined,Male,109,111,105,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8269.951 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7179.8 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3862.1 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,531.5 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,9.3 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61982.0 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1117821.2 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1126874.2 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1115120.0 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,445880.0 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,607594.25 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,796005.25 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9053.0 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,491.7 +,4187857,13.28,ADHD-Combined,Male,109,111,105,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,173719.52 +,4187857,13.28,ADHD-Combined,Male,109,111,105,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,771149.7 +,4187857,13.28,ADHD-Combined,Male,109,111,105,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,4187857,13.28,ADHD-Combined,Male,109,111,105,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,524185.66 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1101.2 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2694.6 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,http://purl.org/nidash/fsl#,Background (mm^3),,,9316569.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1297854.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1277064.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1277125.1 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19673.3 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,847.5 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,530.2 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,563.6 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,584.7 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,838.6 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1032.4 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1665656.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,240897.88 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,293968.56 +,4221029,9.67,ADHD-Combined,Male,135,127,134,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,638.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,567.5 +,4221029,9.67,ADHD-Combined,Male,135,127,134,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,940.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1597.4 +,4221029,9.67,ADHD-Combined,Male,135,127,134,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3819.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3862.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53338.2 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13877.2 +,4221029,9.67,ADHD-Combined,Male,135,127,134,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,5619.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3931.7 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,321.3 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8041.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1962.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2358.2 +,4221029,9.67,ADHD-Combined,Male,135,127,134,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6214.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6531.4 +,4221029,9.67,ADHD-Combined,Male,135,127,134,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8585.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8203.5 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4385.2 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,344.8 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,24.2 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1741322.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,128.7 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,243264.61 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,300325.03 +,4221029,9.67,ADHD-Combined,Male,135,127,134,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,368.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,563.5 +,4221029,9.67,ADHD-Combined,Male,135,127,134,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1704.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1879.7 +,4221029,9.67,ADHD-Combined,Male,135,127,134,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4412.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4127.2 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54724.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12092.7 +,4221029,9.67,ADHD-Combined,Male,135,127,134,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4029.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4558.1 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,139.9 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7144.4 +,4221029,9.67,ADHD-Combined,Male,135,127,134,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1970.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2208.4 +,4221029,9.67,ADHD-Combined,Male,135,127,134,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6177.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6460.7 +,4221029,9.67,ADHD-Combined,Male,135,127,134,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8642.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8292.5 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4296.3 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,498.8 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,23.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65181.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1145458.1 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1161558.1 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1143499.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,484162.5 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,594293.56 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,767807.56 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,16100.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2011.5 +,4221029,9.67,ADHD-Combined,Male,135,127,134,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,267416.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,713821.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,4221029,9.67,ADHD-Combined,Male,135,127,134,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,606745.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,642.6 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1722.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,http://purl.org/nidash/fsl#,Background (mm^3),,,9326394.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1079710.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1068976.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1069440.6 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18538.7 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,701.8 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,504.5 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,412.5 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,474.1 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,762.8 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,658.7 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1424518.6 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,173462.06 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,262628.94 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,573.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,593.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,865.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1534.5 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3769.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3716.4 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60325.1 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11906.7 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3394.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3606.6 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,206.9 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3654.3 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1596.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1902.5 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5074.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5344.1 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7436.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6987.1 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3267.9 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,351.2 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,50.2 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1455535.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,100.6 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,171551.28 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,261334.31 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,500.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,667.1 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,755.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1439.7 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3926.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3897.9 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62077.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11274.1 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3404.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3621.9 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,340.3 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3335.1 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1635.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1838.5 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5043.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5134.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7284.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6831.1 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3536.4 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,317.2 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,21.7 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,55393.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,926316.56 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,934118.56 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,923860.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,345013.34 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,523963.25 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,702205.25 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7802.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1189.8 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,193701.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,649320.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,4225073,10.33,ADHD-Inattentive,Male,89,91,90,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,475485.0 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,2081.5 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2193.6 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,4241194,11.67,ADHD-Combined,Male,101,76,123,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1013375E7 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1325367.0 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1289183.0 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1288957.9 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18644.1 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,884.5 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,640.5 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,791.2 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,546.1 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1053.3 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1386.2 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1821060.0 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,244882.52 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,297349.38 +,4241194,11.67,ADHD-Combined,Male,101,76,123,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,489.55078 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,370.6 +,4241194,11.67,ADHD-Combined,Male,101,76,123,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1050.293 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1862.4 +,4241194,11.67,ADHD-Combined,Male,101,76,123,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3665.039 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3820.6 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,54722.6 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13531.0 +,4241194,11.67,ADHD-Combined,Male,101,76,123,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3461.1328 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3782.5 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,564.8 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,14911.5 +,4241194,11.67,ADHD-Combined,Male,101,76,123,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1925.6836 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2269.5 +,4241194,11.67,ADHD-Combined,Male,101,76,123,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5161.8164 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4783.3 +,4241194,11.67,ADHD-Combined,Male,101,76,123,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7641.211 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8117.7 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3980.1 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,510.7 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,22.2 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1847437.0 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,191.5 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,245845.55 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,301412.4 +,4241194,11.67,ADHD-Combined,Male,101,76,123,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,351.5625 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,503.1 +,4241194,11.67,ADHD-Combined,Male,101,76,123,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1207.6172 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1982.4 +,4241194,11.67,ADHD-Combined,Male,101,76,123,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3737.9883 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3779.6 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58146.5 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11635.2 +,4241194,11.67,ADHD-Combined,Male,101,76,123,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3138.5742 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3947.1 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,469.6 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,13848.7 +,4241194,11.67,ADHD-Combined,Male,101,76,123,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1808.7891 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2019.6 +,4241194,11.67,ADHD-Combined,Male,101,76,123,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4795.3125 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5003.5 +,4241194,11.67,ADHD-Combined,Male,101,76,123,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7390.7227 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8190.0 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3897.9 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,624.8 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,21.6 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60241.0 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1153018.9 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1183614.9 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1149795.0 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,490728.06 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,598761.8 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,774094.8 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,30596.0 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,772.9 +,4241194,11.67,ADHD-Combined,Male,101,76,123,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,291300.28 +,4241194,11.67,ADHD-Combined,Male,101,76,123,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,749106.75 +,4241194,11.67,ADHD-Combined,Male,101,76,123,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,4241194,11.67,ADHD-Combined,Male,101,76,123,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,586618.06 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,2263.1 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,3079.2 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,http://purl.org/nidash/fsl#,Background (mm^3),,,9319827.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1312584.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1271069.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1272060.8 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20882.9 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,960.4 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,383.5 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,424.5 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,446.8 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,990.2 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1647.1 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1687753.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,220932.45 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,309997.28 +,4265987,10.08,Typically Developing Children,Male,125,109,134,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,561.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,586.9 +,4265987,10.08,Typically Developing Children,Male,125,109,134,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1208.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1550.6 +,4265987,10.08,Typically Developing Children,Male,125,109,134,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4048.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4114.6 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58625.1 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14345.1 +,4265987,10.08,Typically Developing Children,Male,125,109,134,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3642.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4280.1 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,690.4 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,17576.6 +,4265987,10.08,Typically Developing Children,Male,125,109,134,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2046.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2293.2 +,4265987,10.08,Typically Developing Children,Male,125,109,134,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5431.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5097.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8117.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8649.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4234.6 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,853.9 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,15.3 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1751786.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,208.3 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,221910.39 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,311628.66 +,4265987,10.08,Typically Developing Children,Male,125,109,134,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,481.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,587.4 +,4265987,10.08,Typically Developing Children,Male,125,109,134,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1125.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1782.4 +,4265987,10.08,Typically Developing Children,Male,125,109,134,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4278.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4231.8 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58651.9 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12507.1 +,4265987,10.08,Typically Developing Children,Male,125,109,134,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4298.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4186.5 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,849.4 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,13904.1 +,4265987,10.08,Typically Developing Children,Male,125,109,134,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2063.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2016.9 +,4265987,10.08,Typically Developing Children,Male,125,109,134,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5867.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5708.3 +,4265987,10.08,Typically Developing Children,Male,125,109,134,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8656.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8111.9 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4309.5 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,955.5 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,35.4 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63272.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1130082.8 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1164664.8 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1126600.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,442842.84 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,621625.94 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,803477.94 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,34582.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,697.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,257640.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,746243.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,4265987,10.08,Typically Developing Children,Male,125,109,134,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,567378.0 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,591.9 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1520.6 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3063307E7 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1061099.0 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1046598.0 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1048020.5 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17183.7 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,749.3 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,378.6 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,349.6 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,456.0 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,701.2 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,689.8 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1252488.1 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,174911.86 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,262346.25 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,508.99988 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,607.8 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,853.9998 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1533.9 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3831.999 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4072.7 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,51457.8 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11160.5 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2624.9993 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3325.6 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,177.3 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6591.3 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1479.9996 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1565.9 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4720.999 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4991.0 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7157.9985 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6470.0 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,2993.0 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,293.1 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,13.6 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1341873.0 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,96.7 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,171689.73 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,262521.7 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,415.9999 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,632.6 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1019.99976 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1484.9 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4353.999 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4328.5 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,49895.7 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11280.1 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3515.9993 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3326.1 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,361.6 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4269.2 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1539.9996 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1395.4 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4685.999 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5096.6 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7178.998 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6540.2 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,2987.1 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,451.0 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,17.1 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,53015.0 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,925876.5 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,937688.5 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,922995.0 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,346601.6 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,524867.94 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,679772.94 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11812.0 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,627.8 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,158920.97 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,566790.9 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,4275075,10.5,ADHD-Inattentive,Female,94,100,93,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,409117.94 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,564.9 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2306.5 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,4362730,8.99,ADHD-Combined,Female,121,106,146,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3062248E7 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1140458.0 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1127056.0 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1127091.6 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19366.0 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1060.1 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,469.0 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,569.7 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,458.7 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,674.8 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,525.3 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1423768.4 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,186179.53 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,280269.44 +,4362730,8.99,ADHD-Combined,Female,121,106,146,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,434.00006 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,832.7 +,4362730,8.99,ADHD-Combined,Female,121,106,146,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,783.0001 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1441.8 +,4362730,8.99,ADHD-Combined,Female,121,106,146,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3868.0005 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3807.5 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57335.5 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12503.4 +,4362730,8.99,ADHD-Combined,Female,121,106,146,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3324.0005 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3522.6 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,310.7 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5335.8 +,4362730,8.99,ADHD-Combined,Female,121,106,146,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1801.0002 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1757.7 +,4362730,8.99,ADHD-Combined,Female,121,106,146,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4786.0005 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5120.3 +,4362730,8.99,ADHD-Combined,Female,121,106,146,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7610.001 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7356.8 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3806.2 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,319.4 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,29.7 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1500989.0 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,132.1 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,184734.9 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,279742.7 +,4362730,8.99,ADHD-Combined,Female,121,106,146,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,395.00006 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,813.8 +,4362730,8.99,ADHD-Combined,Female,121,106,146,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,603.00006 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1541.5 +,4362730,8.99,ADHD-Combined,Female,121,106,146,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3994.0005 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4147.1 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55784.0 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12436.6 +,4362730,8.99,ADHD-Combined,Female,121,106,146,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3233.0005 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3673.1 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,358.0 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3582.9 +,4362730,8.99,ADHD-Combined,Female,121,106,146,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1825.0002 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1660.2 +,4362730,8.99,ADHD-Combined,Female,121,106,146,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4711.0005 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5057.7 +,4362730,8.99,ADHD-Combined,Female,121,106,146,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7587.001 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7412.7 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3670.5 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,488.1 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.6 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58060.0 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,990756.56 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1000871.56 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,988853.0 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,370914.44 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,560012.1 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,731949.1 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10115.0 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1381.9 +,4362730,8.99,ADHD-Combined,Female,121,106,146,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,177099.03 +,4362730,8.99,ADHD-Combined,Female,121,106,146,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,541373.06 +,4362730,8.99,ADHD-Combined,Female,121,106,146,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,4362730,8.99,ADHD-Combined,Female,121,106,146,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,441245.1 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,788.9 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1477.8 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,4562206,7.91,Typically Developing Children,Female,109,104,112,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1111879E7 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1140603.0 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1129099.0 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1129214.0 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16188.2 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,894.7 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,454.1 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,554.8 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,512.4 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,732.0 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,880.3 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1458385.6 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,200710.9 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,273456.84 +,4562206,7.91,Typically Developing Children,Female,109,104,112,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,497.4207 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,622.3 +,4562206,7.91,Typically Developing Children,Female,109,104,112,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,481.46066 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1477.1 +,4562206,7.91,Typically Developing Children,Female,109,104,112,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4185.5156 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4030.8 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52106.6 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13588.2 +,4562206,7.91,Typically Developing Children,Female,109,104,112,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3497.9048 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3461.4 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,328.9 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3557.7 +,4562206,7.91,Typically Developing Children,Female,109,104,112,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1193.0116 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1981.3 +,4562206,7.91,Typically Developing Children,Female,109,104,112,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5007.457 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5114.5 +,4562206,7.91,Typically Developing Children,Female,109,104,112,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7861.6406 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7364.5 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3799.9 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,332.1 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,13.0 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1492087.0 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,144.8 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,198696.44 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,271917.84 +,4562206,7.91,Typically Developing Children,Female,109,104,112,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,284.6204 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,559.7 +,4562206,7.91,Typically Developing Children,Female,109,104,112,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,456.1906 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1577.6 +,4562206,7.91,Typically Developing Children,Female,109,104,112,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4463.4863 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4263.4 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,49645.5 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11825.8 +,4562206,7.91,Typically Developing Children,Female,109,104,112,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3299.7346 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3455.7 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,295.5 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3764.9 +,4562206,7.91,Typically Developing Children,Female,109,104,112,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1755.6024 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1902.0 +,4562206,7.91,Typically Developing Children,Female,109,104,112,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4601.806 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4970.9 +,4562206,7.91,Typically Developing Children,Female,109,104,112,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7398.8003 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7266.1 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3813.4 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,327.1 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57341.0 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1004670.06 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1012980.06 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1001884.0 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,399407.34 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,545374.7 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,705137.7 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8310.0 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1471.4 +,4562206,7.91,Typically Developing Children,Female,109,104,112,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,175255.67 +,4562206,7.91,Typically Developing Children,Female,109,104,112,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,667029.2 +,4562206,7.91,Typically Developing Children,Female,109,104,112,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,4562206,7.91,Typically Developing Children,Female,109,104,112,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,458434.34 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,867.6 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1975.0 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,4601682,11.02,Typically Developing Children,Female,115,108,121,http://purl.org/nidash/fsl#,Background (mm^3),,,1.306268E7 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1038731.0 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1028787.0 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1029891.06 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16323.2 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,802.0 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,445.5 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,425.4 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,513.6 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,823.9 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,671.7 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1193589.9 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,179541.55 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,250592.08 +,4601682,11.02,Typically Developing Children,Female,115,108,121,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,445.0002 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,647.1 +,4601682,11.02,Typically Developing Children,Female,115,108,121,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1074.0005 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1517.4 +,4601682,11.02,Typically Developing Children,Female,115,108,121,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3454.0017 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3387.3 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,46113.4 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,9826.3 +,4601682,11.02,Typically Developing Children,Female,115,108,121,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2881.0015 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3474.7 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,206.7 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2980.6 +,4601682,11.02,Typically Developing Children,Female,115,108,121,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1678.0009 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1639.6 +,4601682,11.02,Typically Developing Children,Female,115,108,121,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4984.0024 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5174.1 +,4601682,11.02,Typically Developing Children,Female,115,108,121,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7346.0034 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6843.8 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3289.6 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,340.9 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,8.4 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1314607.0 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,131.5 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,179094.52 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,257638.95 +,4601682,11.02,Typically Developing Children,Female,115,108,121,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,356.00018 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,543.4 +,4601682,11.02,Typically Developing Children,Female,115,108,121,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,867.0004 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1595.9 +,4601682,11.02,Typically Developing Children,Female,115,108,121,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3773.0017 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3673.5 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,43991.0 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,9365.8 +,4601682,11.02,Typically Developing Children,Female,115,108,121,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3574.0017 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3734.8 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,424.6 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2647.5 +,4601682,11.02,Typically Developing Children,Female,115,108,121,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1669.0009 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1534.6 +,4601682,11.02,Typically Developing Children,Female,115,108,121,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5247.0024 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5260.3 +,4601682,11.02,Typically Developing Children,Female,115,108,121,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7178.0034 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6499.9 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3331.5 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,444.3 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,28.6 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,53780.0 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,922386.06 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,928960.06 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,919437.0 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,358636.06 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,508231.03 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,653098.0 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6574.0 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,628.4 +,4601682,11.02,Typically Developing Children,Female,115,108,121,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,145892.06 +,4601682,11.02,Typically Developing Children,Female,115,108,121,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,586234.25 +,4601682,11.02,Typically Developing Children,Female,115,108,121,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,4601682,11.02,Typically Developing Children,Female,115,108,121,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,417115.22 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,720.4 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1393.1 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,4827048,13.22,Typically Developing Children,Female,104,99,108,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1110178E7 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1159651.0 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1146899.0 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1147203.1 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21725.6 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,877.4 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,661.4 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,728.6 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,642.5 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1056.5 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,971.0 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1484394.4 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,206264.4 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,269370.8 +,4827048,13.22,Typically Developing Children,Female,104,99,108,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,472.15063 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,970.0 +,4827048,13.22,Typically Developing Children,Female,104,99,108,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,860.51117 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1243.4 +,4827048,13.22,Typically Developing Children,Female,104,99,108,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4289.256 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3782.9 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,55366.7 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14471.0 +,4827048,13.22,Typically Developing Children,Female,104,99,108,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2828.9138 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3220.0 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,340.5 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4515.8 +,4827048,13.22,Typically Developing Children,Female,104,99,108,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1806.1425 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1697.2 +,4827048,13.22,Typically Developing Children,Female,104,99,108,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4901.0566 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,3814.1 +,4827048,13.22,Typically Developing Children,Female,104,99,108,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8046.511 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7037.7 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3839.4 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,199.8 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,1.8 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1534407.0 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,84.5 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,208598.5 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,271416.34 +,4827048,13.22,Typically Developing Children,Female,104,99,108,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,276.64038 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,868.3 +,4827048,13.22,Typically Developing Children,Female,104,99,108,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,712.881 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1266.0 +,4827048,13.22,Typically Developing Children,Female,104,99,108,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4476.786 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3992.7 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54594.7 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12957.0 +,4827048,13.22,Typically Developing Children,Female,104,99,108,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3564.4048 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3366.0 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,452.8 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4397.6 +,4827048,13.22,Typically Developing Children,Female,104,99,108,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1804.8125 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1765.6 +,4827048,13.22,Typically Developing Children,Female,104,99,108,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4805.2964 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4578.3 +,4827048,13.22,Typically Developing Children,Female,104,99,108,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7840.361 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7030.6 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3972.5 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,507.2 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,25.8 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,54486.0 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1012259.06 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1022116.06 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1009766.0 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,414862.9 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,540787.2 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,705776.2 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9857.0 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1570.1 +,4827048,13.22,Typically Developing Children,Female,104,99,108,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,178224.23 +,4827048,13.22,Typically Developing Children,Female,104,99,108,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,691768.56 +,4827048,13.22,Typically Developing Children,Female,104,99,108,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,4827048,13.22,Typically Developing Children,Female,104,99,108,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,489991.28 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,643.1 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,888.2 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,5164727,10.16,ADHD-Combined,Female,115,109,117,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1114014E7 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1079115.0 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1063114.0 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1063072.5 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18086.4 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1223.4 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,514.7 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,505.1 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,482.8 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,900.4 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,809.4 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1341194.8 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,182944.86 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,263366.47 +,5164727,10.16,ADHD-Combined,Female,115,109,117,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,220.7803 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,716.3 +,5164727,10.16,ADHD-Combined,Female,115,109,117,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,311.22043 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1359.7 +,5164727,10.16,ADHD-Combined,Female,115,109,117,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3634.895 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4077.2 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,50835.1 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11177.7 +,5164727,10.16,ADHD-Combined,Female,115,109,117,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2995.164 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3487.9 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,247.8 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7687.5 +,5164727,10.16,ADHD-Combined,Female,115,109,117,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1582.7021 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1901.1 +,5164727,10.16,ADHD-Combined,Female,115,109,117,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4587.1763 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5227.9 +,5164727,10.16,ADHD-Combined,Female,115,109,117,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7108.86 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7101.7 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3786.6 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,466.8 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,6.3 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1394665.0 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,167.7 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,180029.73 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,256405.38 +,5164727,10.16,ADHD-Combined,Female,115,109,117,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,420.28058 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,735.2 +,5164727,10.16,ADHD-Combined,Female,115,109,117,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,502.7407 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1373.6 +,5164727,10.16,ADHD-Combined,Female,115,109,117,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3946.1155 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4109.3 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,50850.5 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11104.4 +,5164727,10.16,ADHD-Combined,Female,115,109,117,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3039.0542 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3479.1 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,348.0 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4989.1 +,5164727,10.16,ADHD-Combined,Female,115,109,117,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1682.4523 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1441.6 +,5164727,10.16,ADHD-Combined,Female,115,109,117,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5492.9077 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5512.6 +,5164727,10.16,ADHD-Combined,Female,115,109,117,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7325.65 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6916.4 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3703.4 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,500.0 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,52.0 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56896.0 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,941784.44 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,955629.44 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,939575.0 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,362974.6 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,519771.84 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,678330.9 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13845.0 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,649.7 +,5164727,10.16,ADHD-Combined,Female,115,109,117,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,136688.28 +,5164727,10.16,ADHD-Combined,Female,115,109,117,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,686566.9 +,5164727,10.16,ADHD-Combined,Female,115,109,117,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,5164727,10.16,ADHD-Combined,Female,115,109,117,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,429794.1 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1057.5 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2425.7 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,5216908,10.82,Typically Developing Children,Male,98,79,124,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3050777E7 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1308862.0 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1290180.0 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1291161.4 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22703.2 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,865.3 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,449.1 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,421.1 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,613.7 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,871.8 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,878.4 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1568462.4 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,233415.38 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,307843.03 +,5216908,10.82,Typically Developing Children,Male,98,79,124,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,583.99945 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,778.5 +,5216908,10.82,Typically Developing Children,Male,98,79,124,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1258.9988 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1949.3 +,5216908,10.82,Typically Developing Children,Male,98,79,124,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4626.9956 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4777.8 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60584.8 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14852.7 +,5216908,10.82,Typically Developing Children,Male,98,79,124,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4031.996 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4263.5 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,531.0 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6479.8 +,5216908,10.82,Typically Developing Children,Male,98,79,124,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2199.9978 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2137.9 +,5216908,10.82,Typically Developing Children,Male,98,79,124,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6149.994 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6434.5 +,5216908,10.82,Typically Developing Children,Male,98,79,124,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9373.991 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8403.4 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4507.5 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,531.5 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,39.0 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1685518.0 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,108.7 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,227459.27 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,301936.7 +,5216908,10.82,Typically Developing Children,Male,98,79,124,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,545.99945 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,886.1 +,5216908,10.82,Typically Developing Children,Male,98,79,124,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1066.999 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2110.7 +,5216908,10.82,Typically Developing Children,Male,98,79,124,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5175.995 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4777.4 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61425.5 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14127.7 +,5216908,10.82,Typically Developing Children,Male,98,79,124,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4161.996 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4209.5 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,313.0 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6422.9 +,5216908,10.82,Typically Developing Children,Male,98,79,124,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2137.998 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2083.2 +,5216908,10.82,Typically Developing Children,Male,98,79,124,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5940.994 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6098.0 +,5216908,10.82,Typically Developing Children,Male,98,79,124,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9154.991 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7994.7 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4599.2 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,705.7 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,62.6 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68330.0 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1141613.4 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1156131.4 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1137994.0 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,460874.62 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,609779.75 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,802160.75 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,14518.0 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1332.8 +,5216908,10.82,Typically Developing Children,Male,98,79,124,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,201636.81 +,5216908,10.82,Typically Developing Children,Male,98,79,124,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,597913.44 +,5216908,10.82,Typically Developing Children,Male,98,79,124,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,5216908,10.82,Typically Developing Children,Male,98,79,124,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,521600.5 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,719.0 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1750.0 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,5575344,13.75,Typically Developing Children,Male,111,103,116,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1007904E7 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1295846.0 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1287604.0 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1287297.1 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,23247.0 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,726.1 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,770.9 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,712.9 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,472.4 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,958.0 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,885.2 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1753640.0 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,223738.77 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,303971.94 +,5575344,13.75,Typically Developing Children,Male,111,103,116,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,578.3203 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,679.9 +,5575344,13.75,Typically Developing Children,Male,111,103,116,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1178.6133 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1795.3 +,5575344,13.75,Typically Developing Children,Male,111,103,116,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3943.6523 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4005.7 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,65697.0 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15567.7 +,5575344,13.75,Typically Developing Children,Male,111,103,116,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3276.5625 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3950.1 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,169.7 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2345.1 +,5575344,13.75,Typically Developing Children,Male,111,103,116,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1807.0312 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2442.1 +,5575344,13.75,Typically Developing Children,Male,111,103,116,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5937.8906 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6005.6 +,5575344,13.75,Typically Developing Children,Male,111,103,116,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9440.332 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9332.7 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4333.2 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,236.8 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,38.7 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1776841.0 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,106.4 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,223034.22 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,310011.25 +,5575344,13.75,Typically Developing Children,Male,111,103,116,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,425.39062 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,713.5 +,5575344,13.75,Typically Developing Children,Male,111,103,116,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1039.7461 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1946.2 +,5575344,13.75,Typically Developing Children,Male,111,103,116,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4262.6953 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4317.2 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,63282.7 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13311.6 +,5575344,13.75,Typically Developing Children,Male,111,103,116,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3070.0195 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4372.7 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,221.9 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2431.2 +,5575344,13.75,Typically Developing Children,Male,111,103,116,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1769.2383 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2426.5 +,5575344,13.75,Typically Developing Children,Male,111,103,116,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5742.7734 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6106.7 +,5575344,13.75,Typically Developing Children,Male,111,103,116,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8823.34 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9309.7 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4453.0 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,214.4 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,24.1 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68037.0 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1131818.1 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1136869.1 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1129034.0 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,446772.97 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,613983.2 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,812243.2 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,5051.0 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1283.5 +,5575344,13.75,Typically Developing Children,Male,111,103,116,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,193474.52 +,5575344,13.75,Typically Developing Children,Male,111,103,116,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,778941.2 +,5575344,13.75,Typically Developing Children,Male,111,103,116,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,5575344,13.75,Typically Developing Children,Male,111,103,116,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,580570.3 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1229.6 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2954.0 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,5669389,13.75,Typically Developing Children,Male,110,97,120,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1485356E7 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1356706.0 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1342050.0 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1342165.1 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,25055.7 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,801.0 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,700.1 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,741.7 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,347.4 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,862.0 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1006.1 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1697364.5 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,249886.25 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,298390.3 +,5669389,13.75,Typically Developing Children,Male,110,97,120,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,441.25 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,532.5 +,5669389,13.75,Typically Developing Children,Male,110,97,120,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,896.25 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1613.8 +,5669389,13.75,Typically Developing Children,Male,110,97,120,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4076.25 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3744.2 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,73528.3 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15316.7 +,5669389,13.75,Typically Developing Children,Male,110,97,120,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2958.0 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4039.2 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,126.5 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4393.8 +,5669389,13.75,Typically Developing Children,Male,110,97,120,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1816.25 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2110.0 +,5669389,13.75,Typically Developing Children,Male,110,97,120,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5570.25 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6301.3 +,5669389,13.75,Typically Developing Children,Male,110,97,120,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8253.0 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8700.9 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4764.9 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,209.4 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,39.9 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1887796.0 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,197.2 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,250623.84 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,302038.75 +,5669389,13.75,Typically Developing Children,Male,110,97,120,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,287.0 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,640.5 +,5669389,13.75,Typically Developing Children,Male,110,97,120,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,690.75 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1998.8 +,5669389,13.75,Typically Developing Children,Male,110,97,120,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4032.25 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3866.2 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,72109.6 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14222.3 +,5669389,13.75,Typically Developing Children,Male,110,97,120,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4000.75 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4308.0 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,165.2 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4674.3 +,5669389,13.75,Typically Developing Children,Male,110,97,120,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1844.5 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2281.2 +,5669389,13.75,Typically Developing Children,Male,110,97,120,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5737.5 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6210.2 +,5669389,13.75,Typically Developing Children,Male,110,97,120,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8375.75 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8734.2 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4815.0 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,377.4 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,27.0 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65845.0 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1169479.1 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1178967.1 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1166563.0 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,500510.1 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,600429.06 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,813548.06 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9488.0 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,740.1 +,5669389,13.75,Typically Developing Children,Male,110,97,120,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,245681.75 +,5669389,13.75,Typically Developing Children,Male,110,97,120,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,715989.25 +,5669389,13.75,Typically Developing Children,Male,110,97,120,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,5669389,13.75,Typically Developing Children,Male,110,97,120,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,666748.75 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,789.8 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1484.6 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,5971050,7.24,ADHD-Combined,Male,94,88,101,http://purl.org/nidash/fsl#,Background (mm^3),,,1.111785E7 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1111457.0 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1098944.0 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1098939.4 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16213.9 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1006.5 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,547.7 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,703.1 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,416.6 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,864.3 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,997.5 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1213698.9 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,187443.31 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,270325.38 +,5971050,7.24,ADHD-Combined,Male,94,88,101,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,561.26074 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,701.9 +,5971050,7.24,ADHD-Combined,Male,94,88,101,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,111.72015 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1191.5 +,5971050,7.24,ADHD-Combined,Male,94,88,101,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2988.5142 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2830.2 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58938.0 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11570.5 +,5971050,7.24,ADHD-Combined,Male,94,88,101,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2508.3835 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2994.4 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,237.6 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4085.4 +,5971050,7.24,ADHD-Combined,Male,94,88,101,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1299.4117 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1503.9 +,5971050,7.24,ADHD-Combined,Male,94,88,101,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,3984.6855 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4498.4 +,5971050,7.24,ADHD-Combined,Male,94,88,101,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7438.7 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6591.0 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3197.2 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,407.6 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,2.2 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1440435.0 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,146.7 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,187411.89 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,266968.84 +,5971050,7.24,ADHD-Combined,Male,94,88,101,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,526.6807 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,555.0 +,5971050,7.24,ADHD-Combined,Male,94,88,101,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,195.51027 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1432.9 +,5971050,7.24,ADHD-Combined,Male,94,88,101,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3205.3044 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3174.8 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55561.9 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11497.5 +,5971050,7.24,ADHD-Combined,Male,94,88,101,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2749.1138 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2997.9 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,380.3 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4183.8 +,5971050,7.24,ADHD-Combined,Male,94,88,101,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1447.042 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1523.6 +,5971050,7.24,ADHD-Combined,Male,94,88,101,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4411.616 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4519.2 +,5971050,7.24,ADHD-Combined,Male,94,88,101,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7586.3306 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6811.1 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3130.3 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,391.1 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,49575.0 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,964581.44 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,973940.44 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,961561.0 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,374855.22 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,537294.25 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,701639.25 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9359.0 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1070.6 +,5971050,7.24,ADHD-Combined,Male,94,88,101,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,129232.29 +,5971050,7.24,ADHD-Combined,Male,94,88,101,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,677099.94 +,5971050,7.24,ADHD-Combined,Male,94,88,101,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,5971050,7.24,ADHD-Combined,Male,94,88,101,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,413643.88 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,680.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1632.4 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,http://purl.org/nidash/fsl#,Background (mm^3),,,9321577.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1230778.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1220378.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1221304.6 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,22213.8 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,893.5 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,742.2 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,713.4 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,563.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,900.6 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,870.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1506771.6 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,209541.75 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,293406.38 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,580.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,617.7 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1333.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1584.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4055.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4249.7 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62256.3 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14861.3 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4035.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4261.8 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,504.1 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3198.4 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1937.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2208.4 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5592.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5990.7 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8253.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7113.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4332.4 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,297.9 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,44.3 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1675168.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,192.8 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,210384.9 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,293562.6 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,325.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,518.8 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,711.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1756.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3886.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4334.3 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61906.2 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13961.2 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4021.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4501.3 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,411.6 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3098.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1958.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1950.4 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5259.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6109.8 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8126.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7268.8 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4285.3 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,347.3 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.7 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62390.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1070683.6 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1078079.6 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1068283.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,419926.66 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,586969.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,773477.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7396.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,952.2 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,217746.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,728678.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,5993008,12.25,ADHD-Inattentive,Male,98,91,104,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,547166.0 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,893.7 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1096.0 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,6206397,11.56,Typically Developing Children,Female,80,79,85,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1117832E7 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1163991.0 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1153894.0 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1153445.0 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16916.6 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,727.4 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,778.6 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,752.1 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,641.2 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,953.1 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1035.8 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1331626.4 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,214879.8 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,276205.94 +,6206397,11.56,Typically Developing Children,Female,80,79,85,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,375.06052 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,808.2 +,6206397,11.56,Typically Developing Children,Female,80,79,85,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,414.96057 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1539.5 +,6206397,11.56,Typically Developing Children,Female,80,79,85,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2679.9536 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2889.1 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,46092.7 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14682.1 +,6206397,11.56,Typically Developing Children,Female,80,79,85,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3089.5942 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3221.1 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,303.3 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3319.8 +,6206397,11.56,Typically Developing Children,Female,80,79,85,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1561.4221 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1951.9 +,6206397,11.56,Typically Developing Children,Female,80,79,85,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4702.8867 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5200.8 +,6206397,11.56,Typically Developing Children,Female,80,79,85,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6756.409 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7640.6 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3848.3 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,195.7 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,21.4 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1519577.0 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,96.1 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,210762.86 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,272603.44 +,6206397,11.56,Typically Developing Children,Female,80,79,85,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,339.15045 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,690.5 +,6206397,11.56,Typically Developing Children,Female,80,79,85,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,855.19116 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1661.4 +,6206397,11.56,Typically Developing Children,Female,80,79,85,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2592.1736 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3251.2 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,46551.8 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14385.3 +,6206397,11.56,Typically Developing Children,Female,80,79,85,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3221.2644 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3362.5 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,301.0 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2736.5 +,6206397,11.56,Typically Developing Children,Female,80,79,85,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1667.8223 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1805.7 +,6206397,11.56,Typically Developing Children,Female,80,79,85,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5172.377 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5248.7 +,6206397,11.56,Typically Developing Children,Female,80,79,85,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,5603.298 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7586.6 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3909.1 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,394.5 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.6 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56598.0 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1034494.0 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1041501.0 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1031427.0 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,425642.66 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,548809.4 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,699262.4 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7007.0 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,706.3 +,6206397,11.56,Typically Developing Children,Female,80,79,85,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,152995.44 +,6206397,11.56,Typically Developing Children,Female,80,79,85,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,648421.1 +,6206397,11.56,Typically Developing Children,Female,80,79,85,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,6206397,11.56,Typically Developing Children,Female,80,79,85,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,456158.72 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1131.0 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2915.5 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,6346605,10.69,Typically Developing Children,Male,104,110,112,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3056082E7 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1383110.0 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1357678.0 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1358986.6 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20204.0 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,941.3 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,416.9 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,465.6 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,513.6 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,740.2 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,822.7 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1700721.5 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,231292.33 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,330039.7 +,6346605,10.69,Typically Developing Children,Male,104,110,112,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,664.99365 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,826.7 +,6346605,10.69,Typically Developing Children,Male,104,110,112,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,708.9932 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1610.5 +,6346605,10.69,Typically Developing Children,Male,104,110,112,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3891.963 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3855.1 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,69949.5 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14457.3 +,6346605,10.69,Typically Developing Children,Male,104,110,112,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3717.9646 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4348.9 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,828.5 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7304.1 +,6346605,10.69,Typically Developing Children,Male,104,110,112,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1781.983 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1671.6 +,6346605,10.69,Typically Developing Children,Male,104,110,112,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5504.9473 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5723.4 +,6346605,10.69,Typically Developing Children,Male,104,110,112,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9092.913 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7946.9 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3998.9 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,426.9 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,144.6 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1766055.0 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,184.6 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,232254.52 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,336480.06 +,6346605,10.69,Typically Developing Children,Male,104,110,112,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,547.99475 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,618.3 +,6346605,10.69,Typically Developing Children,Male,104,110,112,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,834.99207 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1675.2 +,6346605,10.69,Typically Developing Children,Male,104,110,112,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4109.961 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4144.7 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,69539.0 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13676.1 +,6346605,10.69,Typically Developing Children,Male,104,110,112,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4174.96 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4286.5 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,840.6 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,10977.2 +,6346605,10.69,Typically Developing Children,Male,104,110,112,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1809.9828 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1479.0 +,6346605,10.69,Typically Developing Children,Male,104,110,112,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5534.9473 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5585.6 +,6346605,10.69,Typically Developing Children,Male,104,110,112,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8615.918 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7571.0 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4134.3 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,795.5 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,29.5 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61429.0 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1193359.6 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1214067.6 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1190173.0 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,463546.84 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,666519.75 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,868078.75 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,20708.0 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1035.9 +,6346605,10.69,Typically Developing Children,Male,104,110,112,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,200616.1 +,6346605,10.69,Typically Developing Children,Male,104,110,112,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,738713.94 +,6346605,10.69,Typically Developing Children,Male,104,110,112,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,6346605,10.69,Typically Developing Children,Male,104,110,112,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,529083.94 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1141.9 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1561.6 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,6383713,11.75,ADHD-Combined,Male,104,91,115,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1494399E7 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1187149.0 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1177296.0 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1177018.9 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21671.4 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,663.7 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,806.5 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,801.3 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,476.8 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,610.5 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,869.7 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1555431.4 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,209869.31 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,256595.17 +,6383713,11.75,ADHD-Combined,Male,104,91,115,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,288.5 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,495.1 +,6383713,11.75,ADHD-Combined,Male,104,91,115,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,718.0 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1401.4 +,6383713,11.75,ADHD-Combined,Male,104,91,115,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2271.5 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3293.2 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60118.1 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,25358.8 +,6383713,11.75,ADHD-Combined,Male,104,91,115,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2898.25 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4271.3 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,90.7 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3832.9 +,6383713,11.75,ADHD-Combined,Male,104,91,115,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1629.75 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2429.9 +,6383713,11.75,ADHD-Combined,Male,104,91,115,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4034.0 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6013.9 +,6383713,11.75,ADHD-Combined,Male,104,91,115,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7584.75 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8049.4 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4355.4 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,273.0 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1711722.0 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,23.2 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,209370.86 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,260517.48 +,6383713,11.75,ADHD-Combined,Male,104,91,115,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,175.0 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,554.2 +,6383713,11.75,ADHD-Combined,Male,104,91,115,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,793.75 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1659.1 +,6383713,11.75,ADHD-Combined,Male,104,91,115,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2556.75 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3422.5 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62035.7 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,27464.6 +,6383713,11.75,ADHD-Combined,Male,104,91,115,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3538.5 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4617.2 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,86.2 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2575.8 +,6383713,11.75,ADHD-Combined,Male,104,91,115,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1564.25 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2308.6 +,6383713,11.75,ADHD-Combined,Male,104,91,115,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4484.25 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5855.1 +,6383713,11.75,ADHD-Combined,Male,104,91,115,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7400.0 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7870.9 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4834.4 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,300.9 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62757.0 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1004457.8 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1010842.8 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,999354.0 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,419240.2 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,517112.66 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,705106.6 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6385.0 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2383.9 +,6383713,11.75,ADHD-Combined,Male,104,91,115,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,209415.75 +,6383713,11.75,ADHD-Combined,Male,104,91,115,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,689122.75 +,6383713,11.75,ADHD-Combined,Male,104,91,115,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,6383713,11.75,ADHD-Combined,Male,104,91,115,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,593052.75 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,975.4 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1897.9 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,6453038,8.72,ADHD-Combined,Female,108,106,106,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3061453E7 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1119399.0 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1104722.0 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1104714.5 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,14831.7 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,772.0 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,485.1 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,485.5 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,411.2 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,832.7 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1209.4 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1360792.2 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,188553.72 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,283470.1 +,6453038,8.72,ADHD-Combined,Female,108,106,106,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,582.9993 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,702.9 +,6453038,8.72,ADHD-Combined,Female,108,106,106,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1047.9988 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1432.0 +,6453038,8.72,ADHD-Combined,Female,108,106,106,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3790.9956 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3819.8 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,43269.6 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10991.9 +,6453038,8.72,ADHD-Combined,Female,108,106,106,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3694.9958 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3767.1 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,328.2 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4902.6 +,6453038,8.72,ADHD-Combined,Female,108,106,106,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1726.998 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1797.2 +,6453038,8.72,ADHD-Combined,Female,108,106,106,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4948.9946 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5324.6 +,6453038,8.72,ADHD-Combined,Female,108,106,106,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7438.9917 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7182.3 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3437.7 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,381.2 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,13.5 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1467703.0 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,149.6 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,186948.97 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,283590.66 +,6453038,8.72,ADHD-Combined,Female,108,106,106,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,438.9995 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,537.5 +,6453038,8.72,ADHD-Combined,Female,108,106,106,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1206.9987 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1556.9 +,6453038,8.72,ADHD-Combined,Female,108,106,106,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3902.9956 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3991.7 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,41710.8 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,9950.5 +,6453038,8.72,ADHD-Combined,Female,108,106,106,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3461.996 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3663.2 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,357.3 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4617.9 +,6453038,8.72,ADHD-Combined,Female,108,106,106,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1625.9982 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1622.3 +,6453038,8.72,ADHD-Combined,Female,108,106,106,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4898.9946 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5152.4 +,6453038,8.72,ADHD-Combined,Female,108,106,106,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6963.992 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6819.7 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3714.1 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,430.1 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.6 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56302.0 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1000403.44 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1011133.44 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,998766.0 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,375502.7 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,567060.75 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,709249.75 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10730.0 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,794.7 +,6453038,8.72,ADHD-Combined,Female,108,106,106,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,170637.81 +,6453038,8.72,ADHD-Combined,Female,108,106,106,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,530260.4 +,6453038,8.72,ADHD-Combined,Female,108,106,106,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,6453038,8.72,ADHD-Combined,Female,108,106,106,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,415947.53 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,801.3 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1785.5 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,6477085,13,Typically Developing Children,Male,115,112,115,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1014067E7 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1186033.0 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1174456.0 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1173466.0 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18747.6 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,753.3 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,794.5 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,672.6 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,535.3 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1043.8 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,821.6 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1647795.2 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,225875.52 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,266595.44 +,6477085,13,Typically Developing Children,Male,115,112,115,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,350.6836 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,489.5 +,6477085,13,Typically Developing Children,Male,115,112,115,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,818.2617 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1620.3 +,6477085,13,Typically Developing Children,Male,115,112,115,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3600.879 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3742.5 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52541.7 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12591.8 +,6477085,13,Typically Developing Children,Male,115,112,115,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3531.4453 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3884.4 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,465.0 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3686.8 +,6477085,13,Typically Developing Children,Male,115,112,115,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1792.0898 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2190.1 +,6477085,13,Typically Developing Children,Male,115,112,115,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5234.7656 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5744.2 +,6477085,13,Typically Developing Children,Male,115,112,115,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7514.6484 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8341.3 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4081.2 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,408.7 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1610785.0 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,230.7 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,221913.9 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,266735.1 +,6477085,13,Typically Developing Children,Male,115,112,115,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,298.82812 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,475.7 +,6477085,13,Typically Developing Children,Male,115,112,115,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1366.6992 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1757.2 +,6477085,13,Typically Developing Children,Male,115,112,115,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3610.5469 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3687.5 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54909.3 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10401.8 +,6477085,13,Typically Developing Children,Male,115,112,115,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3106.0547 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4014.4 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,242.0 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3810.3 +,6477085,13,Typically Developing Children,Male,115,112,115,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1692.7734 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2147.5 +,6477085,13,Typically Developing Children,Male,115,112,115,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5218.0664 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5123.4 +,6477085,13,Typically Developing Children,Male,115,112,115,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6996.9727 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8644.2 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3596.0 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,431.1 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,61448.0 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1046007.94 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1054455.0 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1043382.0 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,447789.4 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,533330.56 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,703292.56 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8447.0 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2512.5 +,6477085,13,Typically Developing Children,Male,115,112,115,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,206251.17 +,6477085,13,Typically Developing Children,Male,115,112,115,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,696379.4 +,6477085,13,Typically Developing Children,Male,115,112,115,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,6477085,13,Typically Developing Children,Male,115,112,115,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,579335.44 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,684.2 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1387.5 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,http://purl.org/nidash/fsl#,Background (mm^3),,,9325983.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1284395.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1253469.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1254812.2 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18664.4 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,992.6 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,316.4 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,452.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,320.1 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1128.7 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1282.6 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1609925.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,216403.23 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,311584.62 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,667.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,530.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,641.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1348.9 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3742.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4505.7 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60059.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12389.2 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3470.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,5024.5 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,461.5 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,12332.5 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1618.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2062.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5449.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5882.2 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7439.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8216.5 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3501.8 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,346.3 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,50.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1664242.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,36.3 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,212785.19 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,306251.22 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,423.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,552.9 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1108.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1640.1 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4306.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4726.2 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59153.9 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12190.5 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3053.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,6027.7 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,351.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,14134.1 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1482.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1954.2 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5459.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6021.3 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6808.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8117.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3601.2 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,281.9 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,43.3 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64886.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1113864.2 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1141432.2 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1110600.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,429188.4 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,617835.9 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,801753.9 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,27568.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,928.1 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,236209.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,785337.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,6500128,11.33,ADHD-Inattentive,Male,95,101,91,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,547246.0 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,819.2 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2147.5 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,6568351,8.1,Typically Developing Children,Female,101,99,102,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1118045E7 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1108471.0 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1092942.0 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1093167.5 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,14836.1 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,402.4 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,256.2 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,895.9 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,323.1 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,438.1 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,956.3 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1298108.9 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,183139.77 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,269853.0 +,6568351,8.1,Typically Developing Children,Female,101,99,102,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,448.21063 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,669.1 +,6568351,8.1,Typically Developing Children,Female,101,99,102,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,224.77031 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1235.0 +,6568351,8.1,Typically Developing Children,Female,101,99,102,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3606.9648 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3542.2 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60468.6 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11815.1 +,6568351,8.1,Typically Developing Children,Female,101,99,102,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2906.054 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3097.4 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,141.7 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4858.8 +,6568351,8.1,Typically Developing Children,Female,101,99,102,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1465.662 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1467.5 +,6568351,8.1,Typically Developing Children,Female,101,99,102,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4803.967 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4713.5 +,6568351,8.1,Typically Developing Children,Female,101,99,102,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6818.9194 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6807.8 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3194.1 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,379.5 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,12.3 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1423728.0 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,87.5 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,183875.86 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,260653.86 +,6568351,8.1,Typically Developing Children,Female,101,99,102,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,230.09032 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,576.7 +,6568351,8.1,Typically Developing Children,Female,101,99,102,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,610.4708 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1416.7 +,6568351,8.1,Typically Developing Children,Female,101,99,102,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2761.0837 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3641.9 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60685.4 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11679.8 +,6568351,8.1,Typically Developing Children,Female,101,99,102,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2654.6836 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3098.8 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,267.3 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,6168.1 +,6568351,8.1,Typically Developing Children,Female,101,99,102,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1383.2019 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1399.6 +,6568351,8.1,Typically Developing Children,Female,101,99,102,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4944.947 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4686.4 +,6568351,8.1,Typically Developing Children,Female,101,99,102,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,5959.7383 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6624.3 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3168.7 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,415.4 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,9.9 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,51195.0 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,951358.44 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,963194.44 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,948416.0 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,367015.62 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,530506.9 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,703515.9 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11836.0 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,879.4 +,6568351,8.1,Typically Developing Children,Female,101,99,102,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,167525.7 +,6568351,8.1,Typically Developing Children,Female,101,99,102,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,681185.7 +,6568351,8.1,Typically Developing Children,Female,101,99,102,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,6568351,8.1,Typically Developing Children,Female,101,99,102,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,398775.78 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,720.8 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2067.3 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,http://purl.org/nidash/fsl#,Background (mm^3),,,9319779.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1325545.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1315587.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1316510.9 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,24221.5 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,796.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,730.5 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,707.3 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,581.6 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,940.3 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,735.7 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1596927.9 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,237471.11 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,300613.03 +,7011503,13.33,Typically Developing Children,Male,121,114,124,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,465.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,632.3 +,7011503,13.33,Typically Developing Children,Male,121,114,124,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1365.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1852.6 +,7011503,13.33,Typically Developing Children,Male,121,114,124,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3874.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3949.4 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,68965.2 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,18170.4 +,7011503,13.33,Typically Developing Children,Male,121,114,124,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4290.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4629.6 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,257.8 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2961.8 +,7011503,13.33,Typically Developing Children,Male,121,114,124,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1882.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2181.3 +,7011503,13.33,Typically Developing Children,Male,121,114,124,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5331.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5746.8 +,7011503,13.33,Typically Developing Children,Male,121,114,124,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8551.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9927.1 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4956.3 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,501.7 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,21.7 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1707871.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,188.3 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,236617.12 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,300474.56 +,7011503,13.33,Typically Developing Children,Male,121,114,124,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,474.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,573.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,844.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1999.1 +,7011503,13.33,Typically Developing Children,Male,121,114,124,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4147.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4122.3 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,68182.5 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,17555.7 +,7011503,13.33,Typically Developing Children,Male,121,114,124,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3547.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4850.5 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,518.7 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2379.7 +,7011503,13.33,Typically Developing Children,Male,121,114,124,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1967.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2134.2 +,7011503,13.33,Typically Developing Children,Male,121,114,124,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5705.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5770.2 +,7011503,13.33,Typically Developing Children,Male,121,114,124,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9427.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9170.9 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,5079.6 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,411.1 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,25.8 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,69291.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1146242.9 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1152808.9 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1143382.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,474088.22 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,601087.6 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,807535.6 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6566.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1625.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,204054.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,770361.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,7011503,13.33,Typically Developing Children,Male,121,114,124,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,615726.0 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1080.5 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2758.9 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,7129258,9.73,Typically Developing Children,Male,112,108,110,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3054781E7 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1189259.0 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1171283.0 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1171448.6 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20045.6 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,977.7 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,462.2 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,518.6 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,660.0 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,960.6 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,719.0 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1400476.0 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,210701.86 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,271137.9 +,7129258,9.73,Typically Developing Children,Male,112,108,110,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,560.9978 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,677.7 +,7129258,9.73,Typically Developing Children,Male,112,108,110,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1282.995 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1420.6 +,7129258,9.73,Typically Developing Children,Male,112,108,110,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4525.9824 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4467.8 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,58373.1 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13785.5 +,7129258,9.73,Typically Developing Children,Male,112,108,110,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3914.9849 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3992.8 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,493.3 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6603.0 +,7129258,9.73,Typically Developing Children,Male,112,108,110,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1712.9934 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1816.5 +,7129258,9.73,Typically Developing Children,Male,112,108,110,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5475.979 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6161.2 +,7129258,9.73,Typically Developing Children,Male,112,108,110,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8698.966 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7304.1 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3873.1 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,394.0 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,17.8 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1545968.0 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,78.2 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,211642.92 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,274156.94 +,7129258,9.73,Typically Developing Children,Male,112,108,110,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,363.9986 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,621.3 +,7129258,9.73,Typically Developing Children,Male,112,108,110,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1261.9951 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1721.0 +,7129258,9.73,Typically Developing Children,Male,112,108,110,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4818.9814 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4804.8 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56089.5 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12575.2 +,7129258,9.73,Typically Developing Children,Male,112,108,110,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3608.986 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4117.8 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,395.0 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5827.5 +,7129258,9.73,Typically Developing Children,Male,112,108,110,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1787.993 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1654.1 +,7129258,9.73,Typically Developing Children,Male,112,108,110,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5727.978 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6362.1 +,7129258,9.73,Typically Developing Children,Male,112,108,110,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8624.967 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7184.2 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4263.1 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,378.3 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,28.7 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,62524.0 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1032588.6 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1046101.6 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1029948.0 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,422344.78 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,545294.8 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,723685.8 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,13513.0 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1713.7 +,7129258,9.73,Typically Developing Children,Male,112,108,110,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,202133.22 +,7129258,9.73,Typically Developing Children,Male,112,108,110,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,537123.94 +,7129258,9.73,Typically Developing Children,Male,112,108,110,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,7129258,9.73,Typically Developing Children,Male,112,108,110,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,473922.2 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1015.4 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2398.3 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,http://purl.org/nidash/fsl#,Background (mm^3),,,9323483.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1179143.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1163756.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1164828.4 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19296.9 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,733.5 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,426.6 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,584.1 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,501.1 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,836.5 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,834.3 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1519382.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,212023.3 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,270344.84 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,471.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,516.3 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1224.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1657.7 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3805.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3892.9 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57790.5 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13480.7 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3583.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3698.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,401.8 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5590.9 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1826.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1868.2 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4975.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4972.7 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8145.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7829.4 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4187.8 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,547.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,14.3 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1552933.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,142.8 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,210156.89 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,269111.34 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,351.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,468.1 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1337.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1783.2 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3907.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3979.5 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58391.7 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13651.5 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3565.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3927.9 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,366.8 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4280.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1818.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1726.8 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5126.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5133.6 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8032.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7939.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4217.6 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,539.9 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,26.2 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59625.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1023589.4 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1034877.4 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1020074.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,422180.2 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,539456.2 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,716377.2 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11288.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,732.2 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,212332.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,705991.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,7253183,13.17,ADHD-Inattentive,Male,103,95,109,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,523357.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1283.6 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,4347.9 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,http://purl.org/nidash/fsl#,Background (mm^3),,,9317340.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1399908.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1358979.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1360109.6 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,24979.7 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,910.2 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,690.9 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,595.8 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,661.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1100.1 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1246.9 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1868419.1 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,253513.36 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,310421.2 +,7407032,13.42,Typically Developing Children,Male,121,111,126,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,737.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,577.3 +,7407032,13.42,Typically Developing Children,Male,121,111,126,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1429.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1771.7 +,7407032,13.42,Typically Developing Children,Male,121,111,126,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3976.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4024.7 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,62468.6 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,17326.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3828.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4389.9 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,727.6 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,16284.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2095.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2335.2 +,7407032,13.42,Typically Developing Children,Male,121,111,126,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6192.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6102.3 +,7407032,13.42,Typically Developing Children,Male,121,111,126,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9246.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8083.8 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4668.6 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,747.5 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,22.8 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1834356.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,324.3 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,258208.73 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,314966.38 +,7407032,13.42,Typically Developing Children,Male,121,111,126,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,463.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,634.8 +,7407032,13.42,Typically Developing Children,Male,121,111,126,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1202.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1733.7 +,7407032,13.42,Typically Developing Children,Male,121,111,126,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4153.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4245.3 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62098.8 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15539.8 +,7407032,13.42,Typically Developing Children,Male,121,111,126,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3383.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4318.2 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,575.4 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,15539.6 +,7407032,13.42,Typically Developing Children,Male,121,111,126,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2292.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2284.2 +,7407032,13.42,Typically Developing Children,Male,121,111,126,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6259.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6089.2 +,7407032,13.42,Typically Developing Children,Male,121,111,126,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9053.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8261.4 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4832.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,463.6 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,21.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65865.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1205310.6 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1239497.6 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1201698.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,511722.1 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,625387.56 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,816804.56 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,34187.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,687.1 +,7407032,13.42,Typically Developing Children,Male,121,111,126,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,281926.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,764241.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,7407032,13.42,Typically Developing Children,Male,121,111,126,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,633697.0 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,795.5 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1741.5 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,7415617,10.9,Typically Developing Children,Male,117,106,134,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3052458E7 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1281088.0 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1268346.0 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1268672.1 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19988.6 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,806.4 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,486.5 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,448.4 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,568.7 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,874.5 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,641.8 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1587017.4 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,233266.44 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,297224.94 +,7415617,10.9,Typically Developing Children,Male,117,106,134,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,598.99927 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,738.8 +,7415617,10.9,Typically Developing Children,Male,117,106,134,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,876.99896 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1743.3 +,7415617,10.9,Typically Developing Children,Male,117,106,134,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4438.9946 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4273.3 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53700.0 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13125.4 +,7415617,10.9,Typically Developing Children,Male,117,106,134,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4278.995 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4202.2 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,225.7 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4118.8 +,7415617,10.9,Typically Developing Children,Male,117,106,134,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1971.9977 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2215.2 +,7415617,10.9,Typically Developing Children,Male,117,106,134,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5901.993 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6252.3 +,7415617,10.9,Typically Developing Children,Male,117,106,134,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9095.989 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8300.8 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3892.2 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,372.2 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,30.3 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1650131.0 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,174.7 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,236704.22 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,302525.6 +,7415617,10.9,Typically Developing Children,Male,117,106,134,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,528.9994 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,628.2 +,7415617,10.9,Typically Developing Children,Male,117,106,134,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1399.9983 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1870.2 +,7415617,10.9,Typically Developing Children,Male,117,106,134,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4669.9946 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4644.0 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53855.1 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12671.8 +,7415617,10.9,Typically Developing Children,Male,117,106,134,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4200.995 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4249.5 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,496.8 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4332.8 +,7415617,10.9,Typically Developing Children,Male,117,106,134,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2028.9976 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1991.5 +,7415617,10.9,Typically Developing Children,Male,117,106,134,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5905.993 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6280.7 +,7415617,10.9,Typically Developing Children,Male,117,106,134,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8826.989 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8056.8 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4148.8 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,568.6 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,22.0 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65288.0 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1136933.1 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1146624.1 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1134589.0 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,469970.66 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,599750.5 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,773694.5 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9691.0 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1033.4 +,7415617,10.9,Typically Developing Children,Male,117,106,134,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,249519.72 +,7415617,10.9,Typically Developing Children,Male,117,106,134,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,604189.25 +,7415617,10.9,Typically Developing Children,Male,117,106,134,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,7415617,10.9,Typically Developing Children,Male,117,106,134,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,539487.4 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1110.2 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2374.2 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,http://purl.org/nidash/fsl#,Background (mm^3),,,9321302.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1256379.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1240056.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1240256.4 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21090.7 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,860.3 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,640.7 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,607.5 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,553.1 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1115.6 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,966.2 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1661321.8 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,227096.62 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,287333.16 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,553.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,568.4 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1003.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1749.8 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3666.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3673.8 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59319.1 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14270.2 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3909.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4054.7 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,503.2 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5498.6 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1953.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2245.2 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5875.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6433.9 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7775.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8268.9 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4402.5 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,489.5 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,27.5 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1699217.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,209.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,230132.83 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,284149.78 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,527.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,576.6 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1540.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1821.7 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4020.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3760.4 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59591.2 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13546.2 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3560.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4412.7 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,537.5 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4803.7 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2014.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2153.8 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6127.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6290.5 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7824.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7769.9 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4606.4 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,574.2 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,12.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64495.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1095796.4 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1107829.4 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1092867.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,457229.47 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,571482.94 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,756020.94 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12033.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1332.8 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,223110.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,665328.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,7689953,13.5,ADHD-Inattentive,Male,90,92,90,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,566285.0 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,752.3 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1433.3 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,7774305,11.22,Typically Developing Children,Female,108,92,104,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3060281E7 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1145644.0 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1134984.0 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1135857.1 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20396.6 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,861.4 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,536.7 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,427.7 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,371.5 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,748.3 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,679.1 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1385746.8 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,200892.08 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,272407.5 +,7774305,11.22,Typically Developing Children,Female,108,92,104,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,543.9991 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,671.6 +,7774305,11.22,Typically Developing Children,Female,108,92,104,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,901.9984 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1521.6 +,7774305,11.22,Typically Developing Children,Female,108,92,104,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3900.9932 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3851.8 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53942.8 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13390.1 +,7774305,11.22,Typically Developing Children,Female,108,92,104,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4307.9927 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3878.5 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,370.1 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3707.9 +,7774305,11.22,Typically Developing Children,Female,108,92,104,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1679.9971 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1889.2 +,7774305,11.22,Typically Developing Children,Female,108,92,104,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4476.992 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4844.1 +,7774305,11.22,Typically Developing Children,Female,108,92,104,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8138.986 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6888.7 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3728.2 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,497.6 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,40.1 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1483942.0 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,200.2 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,198329.34 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,275052.2 +,7774305,11.22,Typically Developing Children,Female,108,92,104,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,469.99918 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,654.6 +,7774305,11.22,Typically Developing Children,Female,108,92,104,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,599.99896 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1647.2 +,7774305,11.22,Typically Developing Children,Female,108,92,104,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4001.9932 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4017.0 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,51822.3 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12998.1 +,7774305,11.22,Typically Developing Children,Female,108,92,104,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3804.9934 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4004.6 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,215.5 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2976.3 +,7774305,11.22,Typically Developing Children,Female,108,92,104,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1707.9971 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1808.5 +,7774305,11.22,Typically Developing Children,Female,108,92,104,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4519.992 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4595.3 +,7774305,11.22,Typically Developing Children,Female,108,92,104,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7839.9863 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7182.9 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3698.1 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,594.7 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,23.7 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56554.0 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1004845.1 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1012776.1 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1002239.0 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,399221.44 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,547459.7 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,710977.7 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7931.0 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,484.5 +,7774305,11.22,Typically Developing Children,Female,108,92,104,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,155495.73 +,7774305,11.22,Typically Developing Children,Female,108,92,104,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,510449.12 +,7774305,11.22,Typically Developing Children,Female,108,92,104,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,7774305,11.22,Typically Developing Children,Female,108,92,104,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,442421.22 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,995.5 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1580.3 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,7994085,14.92,Typically Developing Children,Male,86,86,89,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1016426E7 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1058967.0 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1046220.0 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1045854.06 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18417.1 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,740.8 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,605.0 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,580.5 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,511.9 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,765.6 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,839.0 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1389993.5 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,190566.86 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,236198.44 +,7994085,14.92,Typically Developing Children,Male,86,86,89,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,175.78125 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,374.4 +,7994085,14.92,Typically Developing Children,Male,86,86,89,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1047.6562 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1244.8 +,7994085,14.92,Typically Developing Children,Male,86,86,89,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3798.6328 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4505.2 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,51908.0 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,16145.5 +,7994085,14.92,Typically Developing Children,Male,86,86,89,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2782.6172 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3751.0 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,242.9 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4560.3 +,7994085,14.92,Typically Developing Children,Male,86,86,89,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1714.7461 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2106.1 +,7994085,14.92,Typically Developing Children,Male,86,86,89,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4745.215 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4750.3 +,7994085,14.92,Typically Developing Children,Male,86,86,89,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6502.1484 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7732.0 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3886.7 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,337.9 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1479980.0 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,185.9 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,188234.58 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,233664.2 +,7994085,14.92,Typically Developing Children,Male,86,86,89,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,362.10938 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,461.6 +,7994085,14.92,Typically Developing Children,Male,86,86,89,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1067.8711 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1296.5 +,7994085,14.92,Typically Developing Children,Male,86,86,89,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3949.8047 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4268.0 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54904.6 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14861.7 +,7994085,14.92,Typically Developing Children,Male,86,86,89,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3599.121 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4023.2 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,222.1 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4285.8 +,7994085,14.92,Typically Developing Children,Male,86,86,89,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1624.2188 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2248.5 +,7994085,14.92,Typically Developing Children,Male,86,86,89,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5227.7344 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4710.3 +,7994085,14.92,Typically Developing Children,Male,86,86,89,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6176.074 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7484.5 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3588.0 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,340.2 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,4.0 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,57840.0 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,910112.06 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,919649.06 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,906723.0 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,378801.44 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,469862.66 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,635810.6 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9537.0 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2232.2 +,7994085,14.92,Typically Developing Children,Male,86,86,89,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,194404.39 +,7994085,14.92,Typically Developing Children,Male,86,86,89,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,612365.6 +,7994085,14.92,Typically Developing Children,Male,86,86,89,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,7994085,14.92,Typically Developing Children,Male,86,86,89,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,484795.9 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,759.8 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2293.8 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1108077E7 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1304499.0 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1294216.0 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1294363.9 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21054.3 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,672.4 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,835.9 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,714.1 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,601.8 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,800.6 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,610.5 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1596948.0 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,242271.44 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,300069.38 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,583.8708 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,806.5 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1056.0215 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1955.4 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3722.675 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3392.9 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60461.2 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15520.0 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3947.4453 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4066.2 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,195.6 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3529.7 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1816.7825 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2050.7 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5510.1978 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5101.6 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8041.191 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7703.8 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4587.1 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,489.3 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,10.5 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1674513.0 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,176.1 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,242037.97 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,301002.06 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,542.64075 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,706.0 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1054.6914 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1696.6 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3818.4353 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3586.5 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,58627.9 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13555.9 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3614.945 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4372.3 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,397.3 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2548.1 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2022.9327 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1901.1 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5221.5874 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5173.6 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7833.711 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7299.5 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4621.4 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,489.8 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,0.0 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60837.0 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1149684.9 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1156593.9 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1145924.0 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,484309.4 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,601071.44 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,781682.44 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6909.0 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1103.4 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,160625.66 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,756998.5 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,8009688,11.33,ADHD-Inattentive,Female,109,116,101,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,544758.1 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,915.4 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2829.4 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,8083695,8.62,Typically Developing Children,Male,121,125,112,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3050524E7 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1374236.0 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1358852.0 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1359371.4 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19720.6 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,924.9 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,520.5 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,570.1 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,557.6 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,865.3 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,753.1 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1614214.1 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,253987.77 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,321963.22 +,8083695,8.62,Typically Developing Children,Male,121,125,112,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,635.0062 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,867.1 +,8083695,8.62,Typically Developing Children,Male,121,125,112,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1136.0111 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1554.9 +,8083695,8.62,Typically Developing Children,Male,121,125,112,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4518.044 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4418.5 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,57101.7 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12645.5 +,8083695,8.62,Typically Developing Children,Male,121,125,112,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4293.042 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4053.2 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,638.2 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5290.2 +,8083695,8.62,Typically Developing Children,Male,121,125,112,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1911.0187 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2125.4 +,8083695,8.62,Typically Developing Children,Male,121,125,112,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6111.0596 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6988.0 +,8083695,8.62,Typically Developing Children,Male,121,125,112,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9588.094 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8765.6 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4077.3 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,502.4 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,44.2 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1750144.0 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,275.8 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,252094.58 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,323888.8 +,8083695,8.62,Typically Developing Children,Male,121,125,112,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,411.00403 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,864.9 +,8083695,8.62,Typically Developing Children,Male,121,125,112,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1277.0125 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1838.4 +,8083695,8.62,Typically Developing Children,Male,121,125,112,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4943.0483 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4782.9 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56356.3 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12272.3 +,8083695,8.62,Typically Developing Children,Male,121,125,112,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4046.0396 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4309.2 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,355.7 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4010.6 +,8083695,8.62,Typically Developing Children,Male,121,125,112,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1996.0195 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2148.5 +,8083695,8.62,Typically Developing Children,Male,121,125,112,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6453.063 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6830.7 +,8083695,8.62,Typically Developing Children,Male,121,125,112,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9486.093 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8664.0 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4419.4 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,673.7 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.9 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68785.0 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1223190.4 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1234201.4 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1220006.0 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,506082.34 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,645852.0 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,829307.0 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11011.0 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1878.6 +,8083695,8.62,Typically Developing Children,Male,121,125,112,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,187220.84 +,8083695,8.62,Typically Developing Children,Male,121,125,112,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,539404.25 +,8083695,8.62,Typically Developing Children,Male,121,125,112,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,8083695,8.62,Typically Developing Children,Male,121,125,112,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,522489.12 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,863.3 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1668.7 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,8191384,13.42,Typically Developing Children,Male,92,81,104,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1492657E7 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1174648.0 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1153435.0 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1153477.1 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20525.3 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,845.3 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,443.0 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,514.7 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,583.2 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1089.9 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,669.4 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1173631.4 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,218522.77 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,259970.5 +,8191384,13.42,Typically Developing Children,Male,92,81,104,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,466.25 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,468.2 +,8191384,13.42,Typically Developing Children,Male,92,81,104,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,663.75 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1526.7 +,8191384,13.42,Typically Developing Children,Male,92,81,104,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2871.75 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3542.3 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56751.3 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12661.2 +,8191384,13.42,Typically Developing Children,Male,92,81,104,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2554.75 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3558.6 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,848.3 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,8150.6 +,8191384,13.42,Typically Developing Children,Male,92,81,104,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1421.5 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2241.7 +,8191384,13.42,Typically Developing Children,Male,92,81,104,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4627.0 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5587.2 +,8191384,13.42,Typically Developing Children,Male,92,81,104,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7595.75 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7609.1 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4306.8 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,399.8 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,20.8 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1473140.0 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,187.1 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,218761.55 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,258065.3 +,8191384,13.42,Typically Developing Children,Male,92,81,104,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,326.75 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,431.2 +,8191384,13.42,Typically Developing Children,Male,92,81,104,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,683.0 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1712.6 +,8191384,13.42,Typically Developing Children,Male,92,81,104,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3659.75 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3753.9 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,54418.4 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15000.7 +,8191384,13.42,Typically Developing Children,Male,92,81,104,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3417.75 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3597.3 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,724.0 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,8088.1 +,8191384,13.42,Typically Developing Children,Male,92,81,104,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1708.25 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1964.6 +,8191384,13.42,Typically Developing Children,Male,92,81,104,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4667.75 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5292.9 +,8191384,13.42,Typically Developing Children,Male,92,81,104,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7015.25 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8026.6 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4265.8 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,466.0 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,6.0 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59684.0 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1016403.1 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1034570.1 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1014815.0 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,437284.3 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,518035.8 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,688996.8 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,18167.0 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,685.3 +,8191384,13.42,Typically Developing Children,Male,92,81,104,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,210515.0 +,8191384,13.42,Typically Developing Children,Male,92,81,104,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,686192.75 +,8191384,13.42,Typically Developing Children,Male,92,81,104,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,8191384,13.42,Typically Developing Children,Male,92,81,104,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,565233.0 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,661.3 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,3223.5 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,8263351,8.34,Typically Developing Children,Male,107,106,114,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3058716E7 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1140631.0 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1124570.0 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1125155.6 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17639.0 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1097.3 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,547.5 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,632.5 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,549.7 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,902.3 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,564.0 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1353299.1 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,175257.23 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,278185.62 +,8263351,8.34,Typically Developing Children,Male,107,106,114,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,720.00085 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,860.4 +,8263351,8.34,Typically Developing Children,Male,107,106,114,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,777.0009 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1683.3 +,8263351,8.34,Typically Developing Children,Male,107,106,114,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3549.0042 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,5232.3 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,60797.5 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10828.5 +,8263351,8.34,Typically Developing Children,Male,107,106,114,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2660.0032 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4025.2 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,587.9 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5421.8 +,8263351,8.34,Typically Developing Children,Male,107,106,114,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1942.0023 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1957.3 +,8263351,8.34,Typically Developing Children,Male,107,106,114,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6279.0073 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6562.7 +,8263351,8.34,Typically Developing Children,Male,107,106,114,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7712.0093 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7449.3 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3843.6 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,365.8 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,44.5 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1462031.0 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,104.6 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,178515.4 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,285778.34 +,8263351,8.34,Typically Developing Children,Male,107,106,114,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,275.00034 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,782.3 +,8263351,8.34,Typically Developing Children,Male,107,106,114,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,543.0007 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1862.4 +,8263351,8.34,Typically Developing Children,Male,107,106,114,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5122.0063 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5386.4 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60400.9 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10994.3 +,8263351,8.34,Typically Developing Children,Male,107,106,114,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3496.0042 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3782.3 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,415.1 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4856.3 +,8263351,8.34,Typically Developing Children,Male,107,106,114,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1912.0023 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1692.6 +,8263351,8.34,Typically Developing Children,Male,107,106,114,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5920.007 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6558.0 +,8263351,8.34,Typically Developing Children,Male,107,106,114,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7593.0093 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6962.0 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3815.5 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,473.3 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.7 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64623.0 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,984996.6 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,996769.6 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,981712.0 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,353772.66 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,563964.0 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,750530.0 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11773.0 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,698.2 +,8263351,8.34,Typically Developing Children,Male,107,106,114,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,140230.17 +,8263351,8.34,Typically Developing Children,Male,107,106,114,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,629631.75 +,8263351,8.34,Typically Developing Children,Male,107,106,114,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,8263351,8.34,Typically Developing Children,Male,107,106,114,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,407335.53 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,900.6 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2134.6 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,http://purl.org/nidash/fsl#,Background (mm^3),,,9318817.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1279924.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1267070.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1267723.9 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21148.5 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,597.9 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,688.3 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,677.4 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,504.7 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,815.7 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,797.1 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1677746.8 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,227202.69 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,303174.1 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,625.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,578.3 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1372.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1603.5 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3702.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3869.8 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56074.4 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15339.5 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3971.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4085.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,404.4 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3913.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1987.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2486.1 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5827.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6076.7 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8570.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8234.5 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4676.1 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,340.6 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,31.6 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1686745.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,137.1 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,226398.92 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,303327.12 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,386.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,550.6 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1674.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1760.4 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4138.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3988.4 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,56646.6 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14343.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4205.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4313.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,795.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3739.4 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1919.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2268.8 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5806.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6070.6 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8649.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8265.7 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4463.6 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,467.6 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,19.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,64625.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1127437.9 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1136642.9 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1123979.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,453601.62 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,606501.2 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,784887.2 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9205.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1387.2 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,224230.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,692248.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,8278680,13.25,ADHD-Inattentive,Male,114,96,129,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,573624.0 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1138.1 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1589.9 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,8337695,8.8,ADHD-Combined,Male,94,112,93,http://purl.org/nidash/fsl#,Background (mm^3),,,1.306314E7 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1146813.0 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1134811.0 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1134508.2 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16609.3 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,851.3 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,607.0 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,510.0 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,485.9 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,926.8 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,949.1 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1434014.1 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,193164.12 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,277586.1 +,8337695,8.8,ADHD-Combined,Male,94,112,93,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,236.0024 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,902.4 +,8337695,8.8,ADHD-Combined,Male,94,112,93,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,394.004 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1598.7 +,8337695,8.8,ADHD-Combined,Male,94,112,93,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3685.0374 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3189.1 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,52512.4 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10325.6 +,8337695,8.8,ADHD-Combined,Male,94,112,93,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2947.0298 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4079.1 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,151.6 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4146.9 +,8337695,8.8,ADHD-Combined,Male,94,112,93,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1719.0175 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2095.0 +,8337695,8.8,ADHD-Combined,Male,94,112,93,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5720.058 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6644.4 +,8337695,8.8,ADHD-Combined,Male,94,112,93,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7954.0806 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6913.1 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4336.1 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,239.2 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,21.6 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1509348.0 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,57.7 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,194431.64 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,285687.47 +,8337695,8.8,ADHD-Combined,Male,94,112,93,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,210.00212 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,726.7 +,8337695,8.8,ADHD-Combined,Male,94,112,93,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,463.0047 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1573.2 +,8337695,8.8,ADHD-Combined,Male,94,112,93,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,2393.0242 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3907.2 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,50409.2 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,9732.1 +,8337695,8.8,ADHD-Combined,Male,94,112,93,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3304.0334 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3872.3 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,225.9 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3182.9 +,8337695,8.8,ADHD-Combined,Male,94,112,93,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1850.0188 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1952.5 +,8337695,8.8,ADHD-Combined,Male,94,112,93,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5647.057 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6330.2 +,8337695,8.8,ADHD-Combined,Male,94,112,93,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7670.0776 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6441.6 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3878.8 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,303.1 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.8 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,60743.0 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1013548.3 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1021668.3 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1011878.0 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,387595.75 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,563273.56 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,727638.56 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,8120.0 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1051.6 +,8337695,8.8,ADHD-Combined,Male,94,112,93,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,211831.14 +,8337695,8.8,ADHD-Combined,Male,94,112,93,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,650649.56 +,8337695,8.8,ADHD-Combined,Male,94,112,93,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,8337695,8.8,ADHD-Combined,Male,94,112,93,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,484787.9 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,783.5 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1349.0 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,8415034,11.79,Typically Developing Children,Female,102,95,108,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1112092E7 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1085468.0 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1075275.0 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1075062.9 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15618.8 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,728.8 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,591.4 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,621.5 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,414.1 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,704.7 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,839.8 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1320178.5 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,192686.98 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,269044.1 +,8415034,11.79,Typically Developing Children,Female,102,95,108,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,448.20804 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,639.2 +,8415034,11.79,Typically Developing Children,Female,102,95,108,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,980.20575 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1283.5 +,8415034,11.79,Typically Developing Children,Female,102,95,108,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4190.8115 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3927.4 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,40233.9 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,8578.4 +,8415034,11.79,Typically Developing Children,Female,102,95,108,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3600.2942 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3380.6 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,439.8 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3304.8 +,8415034,11.79,Typically Developing Children,Female,102,95,108,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1691.7527 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1815.4 +,8415034,11.79,Typically Developing Children,Female,102,95,108,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5139.0977 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5506.4 +,8415034,11.79,Typically Developing Children,Female,102,95,108,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6664.601 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6983.2 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3733.5 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,364.0 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,31.8 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1452537.0 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,113.3 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,194927.27 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,267684.56 +,8415034,11.79,Typically Developing Children,Female,102,95,108,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,481.4579 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,646.4 +,8415034,11.79,Typically Developing Children,Female,102,95,108,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,784.6966 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1508.0 +,8415034,11.79,Typically Developing Children,Female,102,95,108,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4305.1914 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3847.2 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,38032.4 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,7517.0 +,8415034,11.79,Typically Developing Children,Female,102,95,108,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3289.0757 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3600.8 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,315.7 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3161.1 +,8415034,11.79,Typically Developing Children,Female,102,95,108,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1667.8127 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1604.8 +,8415034,11.79,Typically Developing Children,Female,102,95,108,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,4936.9385 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5311.1 +,8415034,11.79,Typically Developing Children,Female,102,95,108,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6527.6113 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6867.9 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3769.5 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,419.2 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,17.9 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,56257.0 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,982879.9 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,990333.9 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,980729.0 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,387614.25 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,536728.6 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,671931.6 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7454.0 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1423.6 +,8415034,11.79,Typically Developing Children,Female,102,95,108,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,182308.95 +,8415034,11.79,Typically Developing Children,Female,102,95,108,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,636065.75 +,8415034,11.79,Typically Developing Children,Female,102,95,108,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,8415034,11.79,Typically Developing Children,Female,102,95,108,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,422561.78 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,678.3 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,974.0 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,8432725,11.51,Typically Developing Children,Female,116,102,126,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3053653E7 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1274303.0 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1260064.0 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1260565.6 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21667.7 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,869.2 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,452.0 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,549.7 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,507.7 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,868.1 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,727.1 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1573112.0 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,225848.12 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,296692.25 +,8432725,11.51,Typically Developing Children,Female,116,102,126,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,700.9962 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,848.7 +,8432725,11.51,Typically Developing Children,Female,116,102,126,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1057.9944 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1799.1 +,8432725,11.51,Typically Developing Children,Female,116,102,126,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,5077.9727 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4899.1 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,56856.0 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14732.4 +,8432725,11.51,Typically Developing Children,Female,116,102,126,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3330.9822 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4367.6 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,683.8 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4701.5 +,8432725,11.51,Typically Developing Children,Female,116,102,126,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1810.9902 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2073.9 +,8432725,11.51,Typically Developing Children,Female,116,102,126,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5722.969 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6146.9 +,8432725,11.51,Typically Developing Children,Female,116,102,126,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9003.952 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8932.2 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4548.2 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,283.3 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,55.1 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1675464.0 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,177.1 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,223968.38 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,301186.9 +,8432725,11.51,Typically Developing Children,Female,116,102,126,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,533.99713 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,695.4 +,8432725,11.51,Typically Developing Children,Female,116,102,126,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,900.9952 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1949.0 +,8432725,11.51,Typically Developing Children,Female,116,102,126,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5216.972 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5552.0 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,57739.6 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12609.7 +,8432725,11.51,Typically Developing Children,Female,116,102,126,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3837.9795 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4519.0 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,359.9 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5940.2 +,8432725,11.51,Typically Developing Children,Female,116,102,126,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2007.9893 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1870.5 +,8432725,11.51,Typically Developing Children,Female,116,102,126,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5704.969 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5852.7 +,8432725,11.51,Typically Developing Children,Female,116,102,126,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8567.954 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9072.9 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4992.0 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,392.0 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,51.5 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,70402.0 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1120239.6 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1132229.6 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1117537.0 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,449816.5 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,597879.2 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,784041.2 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11990.0 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1356.2 +,8432725,11.51,Typically Developing Children,Female,116,102,126,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,205342.9 +,8432725,11.51,Typically Developing Children,Female,116,102,126,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,566497.94 +,8432725,11.51,Typically Developing Children,Female,116,102,126,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,8432725,11.51,Typically Developing Children,Female,116,102,126,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,512163.25 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,547.3 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1421.0 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,8628223,10.81,Typically Developing Children,Female,97,86,85,http://purl.org/nidash/fsl#,Background (mm^3),,,1.176227E7 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1032894.0 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1023652.0 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1024040.44 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17583.5 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1052.6 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,567.9 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,585.6 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,395.0 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,776.8 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,650.6 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1264190.4 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,172220.7 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,250793.6 +,8628223,10.81,Typically Developing Children,Female,97,86,85,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,531.00305 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,699.3 +,8628223,10.81,Typically Developing Children,Female,97,86,85,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,603.0035 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1348.8 +,8628223,10.81,Typically Developing Children,Female,97,86,85,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2789.0159 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3555.4 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,49309.4 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10993.6 +,8628223,10.81,Typically Developing Children,Female,97,86,85,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2510.0144 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3507.2 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,197.3 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3128.6 +,8628223,10.81,Typically Developing Children,Female,97,86,85,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1285.0073 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1729.2 +,8628223,10.81,Typically Developing Children,Female,97,86,85,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,2850.0164 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5072.7 +,8628223,10.81,Typically Developing Children,Female,97,86,85,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6443.037 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6776.4 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3711.2 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,282.7 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,18.2 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1330678.0 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,103.9 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,172874.2 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,254786.94 +,8628223,10.81,Typically Developing Children,Female,97,86,85,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,328.0019 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,632.5 +,8628223,10.81,Typically Developing Children,Female,97,86,85,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,446.00256 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1450.6 +,8628223,10.81,Typically Developing Children,Female,97,86,85,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3129.0178 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3907.5 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,47564.1 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,10521.2 +,8628223,10.81,Typically Developing Children,Female,97,86,85,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2778.0159 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3061.6 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,254.7 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2706.8 +,8628223,10.81,Typically Developing Children,Female,97,86,85,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1356.0078 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1588.6 +,8628223,10.81,Typically Developing Children,Female,97,86,85,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,3636.0208 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5285.9 +,8628223,10.81,Typically Developing Children,Female,97,86,85,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,5593.032 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6848.4 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3688.8 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,492.1 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,44.3 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,54926.0 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,907456.44 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,914239.44 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,905146.0 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,345094.9 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,505580.53 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,658285.5 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6783.0 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,747.0 +,8628223,10.81,Typically Developing Children,Female,97,86,85,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,115725.66 +,8628223,10.81,Typically Developing Children,Female,97,86,85,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,572526.25 +,8628223,10.81,Typically Developing Children,Female,97,86,85,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,8628223,10.81,Typically Developing Children,Female,97,86,85,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,396415.28 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,925.9 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2376.0 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,8658218,9.75,Typically Developing Children,Male,114,115,119,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3055285E7 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1224007.0 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1202621.0 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1202873.2 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20405.5 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,836.0 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,390.8 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,499.4 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,494.1 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,927.5 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1039.5 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1523633.1 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,220146.45 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,275717.56 +,8658218,9.75,Typically Developing Children,Male,114,115,119,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,590.00586 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,784.9 +,8658218,9.75,Typically Developing Children,Male,114,115,119,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1240.0123 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1986.8 +,8658218,9.75,Typically Developing Children,Male,114,115,119,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3514.0347 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3632.1 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61777.0 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13708.8 +,8658218,9.75,Typically Developing Children,Male,114,115,119,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3642.0361 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4557.1 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,568.9 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,7953.5 +,8658218,9.75,Typically Developing Children,Male,114,115,119,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1821.0181 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2218.0 +,8658218,9.75,Typically Developing Children,Male,114,115,119,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5704.0566 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6412.5 +,8658218,9.75,Typically Developing Children,Male,114,115,119,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9181.091 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8492.0 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4421.8 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,486.4 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.7 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1619593.0 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,113.8 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,217787.94 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,273209.38 +,8658218,9.75,Typically Developing Children,Male,114,115,119,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,424.00418 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,770.4 +,8658218,9.75,Typically Developing Children,Male,114,115,119,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1291.0128 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2357.0 +,8658218,9.75,Typically Developing Children,Male,114,115,119,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3917.0388 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3881.7 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61229.0 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12770.1 +,8658218,9.75,Typically Developing Children,Male,114,115,119,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3801.0376 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4517.3 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,506.3 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,7415.3 +,8658218,9.75,Typically Developing Children,Male,114,115,119,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2181.0215 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2226.0 +,8658218,9.75,Typically Developing Children,Male,114,115,119,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5970.059 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6237.9 +,8658218,9.75,Typically Developing Children,Male,114,115,119,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8768.087 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8047.9 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4678.4 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,603.5 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,15.8 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67792.0 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1056020.2 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1073080.2 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1054319.0 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,437934.38 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,548926.94 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,739335.94 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,17060.0 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2235.2 +,8658218,9.75,Typically Developing Children,Male,114,115,119,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,238512.36 +,8658218,9.75,Typically Developing Children,Male,114,115,119,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,614676.06 +,8658218,9.75,Typically Developing Children,Male,114,115,119,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,8658218,9.75,Typically Developing Children,Male,114,115,119,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,557060.5 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,836.3 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1797.9 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,8692452,12.25,Typically Developing Children,Male,123,127,120,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1124625E7 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1431881.0 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1417326.0 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1417797.1 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20418.0 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,1273.6 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,761.5 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,933.2 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,761.3 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1005.0 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,857.9 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1549582.0 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,259691.56 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,337424.6 +,8692452,12.25,Typically Developing Children,Male,123,127,120,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,393.68054 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,817.8 +,8692452,12.25,Typically Developing Children,Male,123,127,120,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,414.96057 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1763.0 +,8692452,12.25,Typically Developing Children,Male,123,127,120,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,2685.2737 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,5255.7 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,64285.7 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14355.6 +,8692452,12.25,Typically Developing Children,Male,123,127,120,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,1121.1915 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4164.7 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,491.0 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5286.5 +,8692452,12.25,Typically Developing Children,Male,123,127,120,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1324.6819 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2209.4 +,8692452,12.25,Typically Developing Children,Male,123,127,120,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,4134.9756 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6232.6 +,8692452,12.25,Typically Developing Children,Male,123,127,120,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6405.289 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9523.1 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4364.2 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,468.7 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1890889.0 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,117.8 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,259655.64 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,335808.38 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,727.8 +,8692452,12.25,Typically Developing Children,Male,123,127,120,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,687.61096 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1872.9 +,8692452,12.25,Typically Developing Children,Male,123,127,120,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3110.8743 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5600.8 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,59276.7 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15338.1 +,8692452,12.25,Typically Developing Children,Male,123,127,120,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,953.6113 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4287.8 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,364.4 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4641.4 +,8692452,12.25,Typically Developing Children,Male,123,127,120,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1246.2117 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2137.2 +,8692452,12.25,Typically Developing Children,Male,123,127,120,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,3565.7349 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6337.5 +,8692452,12.25,Typically Developing Children,Male,123,127,120,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6195.1484 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8989.8 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4516.9 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,641.5 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,7.5 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,70926.0 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1267131.1 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1278369.1 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1262916.0 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,519347.2 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,673233.0 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,870345.0 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11238.0 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,963.8 +,8692452,12.25,Typically Developing Children,Male,123,127,120,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,192817.02 +,8692452,12.25,Typically Developing Children,Male,123,127,120,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,789747.1 +,8692452,12.25,Typically Developing Children,Male,123,127,120,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,8692452,12.25,Typically Developing Children,Male,123,127,120,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,555662.8 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,762.3 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1359.8 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,8697774,9.92,ADHD-Combined,Male,101,106,97,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1144293E7 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1109231.0 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1099130.0 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1099556.8 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18123.1 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,697.2 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,448.3 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,540.8 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,481.4 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,643.1 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,820.1 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1373389.0 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,194257.5 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,250142.1 +,8697774,9.92,ADHD-Combined,Male,101,106,97,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,147.6302 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,723.4 +,8697774,9.92,ADHD-Combined,Male,101,106,97,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,236.74033 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1702.8 +,8697774,9.92,ADHD-Combined,Male,101,106,97,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,1326.0118 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3291.3 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59556.4 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15098.1 +,8697774,9.92,ADHD-Combined,Male,101,106,97,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,743.471 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3604.1 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,634.9 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,2827.4 +,8697774,9.92,ADHD-Combined,Male,101,106,97,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,581.2108 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1836.3 +,8697774,9.92,ADHD-Combined,Male,101,106,97,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,980.21136 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5641.9 +,8697774,9.92,ADHD-Combined,Male,101,106,97,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,2191.843 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7449.0 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3818.1 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,476.3 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,0.0 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1563893.0 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,126.0 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,195953.02 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,256211.12 +,8697774,9.92,ADHD-Combined,Male,101,106,97,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,196.84027 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,599.2 +,8697774,9.92,ADHD-Combined,Male,101,106,97,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,195.51027 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1693.8 +,8697774,9.92,ADHD-Combined,Male,101,106,97,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,1614.6222 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3813.3 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,55399.4 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13632.0 +,8697774,9.92,ADHD-Combined,Male,101,106,97,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,691.60095 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3578.7 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,544.5 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2777.4 +,8697774,9.92,ADHD-Combined,Male,101,106,97,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,412.30057 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1596.9 +,8697774,9.92,ADHD-Combined,Male,101,106,97,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,1010.8014 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5749.1 +,8697774,9.92,ADHD-Combined,Male,101,106,97,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,2242.383 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7482.5 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3953.2 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,578.6 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.8 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59062.0 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,957472.75 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,964745.75 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,955082.0 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,390210.5 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,506353.22 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,681294.25 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7273.0 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2118.6 +,8697774,9.92,ADHD-Combined,Male,101,106,97,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,189860.42 +,8697774,9.92,ADHD-Combined,Male,101,106,97,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,694654.6 +,8697774,9.92,ADHD-Combined,Male,101,106,97,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,8697774,9.92,ADHD-Combined,Male,101,106,97,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,482412.94 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1198.1 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1742.2 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,8834383,8.8,Typically Developing Children,Male,106,103,106,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1111889E7 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1230125.0 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1219596.0 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1218954.6 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,16119.4 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,906.7 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,774.5 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,777.1 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,423.9 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,822.6 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,798.9 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1238195.2 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,226366.8 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,297020.7 +,8834383,8.8,Typically Developing Children,Male,106,103,106,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,473.48065 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,718.9 +,8834383,8.8,Typically Developing Children,Male,106,103,106,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,824.60114 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1390.5 +,8834383,8.8,Typically Developing Children,Male,106,103,106,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3489.9248 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3518.6 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,41964.4 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,10920.7 +,8834383,8.8,Typically Developing Children,Male,106,103,106,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3548.4448 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3474.2 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,225.5 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3087.5 +,8834383,8.8,Typically Developing Children,Male,106,103,106,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1284.7817 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2274.4 +,8834383,8.8,Typically Developing Children,Male,106,103,106,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6285.589 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5791.1 +,8834383,8.8,Typically Developing Children,Male,106,103,106,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7644.8506 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7476.5 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3599.7 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,330.1 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,9.6 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1626806.0 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,193.8 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,228639.4 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,305406.7 +,8834383,8.8,Typically Developing Children,Male,106,103,106,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,571.90076 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,725.5 +,8834383,8.8,Typically Developing Children,Male,106,103,106,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,496.0907 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1606.0 +,8834383,8.8,Typically Developing Children,Male,106,103,106,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3327.6646 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3812.3 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,41689.7 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,8561.9 +,8834383,8.8,Typically Developing Children,Male,106,103,106,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2860.834 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3414.4 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,326.9 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,2962.7 +,8834383,8.8,Typically Developing Children,Male,106,103,106,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1383.2019 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1814.1 +,8834383,8.8,Typically Developing Children,Male,106,103,106,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5939.788 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6196.3 +,8834383,8.8,Typically Developing Children,Male,106,103,106,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6844.1895 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7021.5 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4053.5 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,461.8 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,4.5 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,58352.0 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1117825.6 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1124706.6 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1116251.0 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,455006.2 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,602427.4 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,745060.4 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,6881.0 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1612.4 +,8834383,8.8,Typically Developing Children,Male,106,103,106,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,157498.81 +,8834383,8.8,Typically Developing Children,Male,106,103,106,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,698759.0 +,8834383,8.8,Typically Developing Children,Male,106,103,106,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,8834383,8.8,Typically Developing Children,Male,106,103,106,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,462952.34 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1068.9 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1512.1 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,8915162,10.7,ADHD-Combined,Male,134,124,136,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1104383E7 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1244477.0 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1229965.0 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1229601.8 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17787.5 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,971.8 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,623.2 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,649.8 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,567.0 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,962.5 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1335.1 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1653483.8 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,229230.19 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,287059.2 +,8915162,10.7,ADHD-Combined,Male,134,124,136,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,502.7407 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,723.4 +,8915162,10.7,ADHD-Combined,Male,134,124,136,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,767.4111 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1661.5 +,8915162,10.7,ADHD-Combined,Male,134,124,136,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4686.9263 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4131.3 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,65173.6 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15786.7 +,8915162,10.7,ADHD-Combined,Male,134,124,136,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3894.2454 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4009.3 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,271.7 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4766.5 +,8915162,10.7,ADHD-Combined,Male,134,124,136,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1885.9426 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1899.4 +,8915162,10.7,ADHD-Combined,Male,134,124,136,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6107.368 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6166.0 +,8915162,10.7,ADHD-Combined,Male,134,124,136,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9062.633 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8562.0 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4503.9 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,497.8 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,10.8 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1801999.0 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,194.5 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,224201.12 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,267490.22 +,8915162,10.7,ADHD-Combined,Male,134,124,136,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,639.7309 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,617.1 +,8915162,10.7,ADHD-Combined,Male,134,124,136,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,700.91095 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2019.9 +,8915162,10.7,ADHD-Combined,Male,134,124,136,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4052.5156 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4395.0 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60635.3 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,15135.4 +,8915162,10.7,ADHD-Combined,Male,134,124,136,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3864.9854 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3695.4 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,210.9 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4889.5 +,8915162,10.7,ADHD-Combined,Male,134,124,136,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1782.2024 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1757.9 +,8915162,10.7,ADHD-Combined,Male,134,124,136,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6050.178 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6085.5 +,8915162,10.7,ADHD-Combined,Male,134,124,136,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8482.752 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8349.2 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4568.0 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,468.5 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,50.9 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65726.0 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1075762.8 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1086467.8 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1073941.0 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,453431.3 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,554549.4 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,745969.4 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10705.0 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,3422.3 +,8915162,10.7,ADHD-Combined,Male,134,124,136,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,262708.62 +,8915162,10.7,ADHD-Combined,Male,134,124,136,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,738776.1 +,8915162,10.7,ADHD-Combined,Male,134,124,136,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,8915162,10.7,ADHD-Combined,Male,134,124,136,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,549993.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,700.1 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1943.3 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,http://purl.org/nidash/fsl#,Background (mm^3),,,9319655.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1496047.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1482905.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1483865.5 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21447.4 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,889.3 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,539.1 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,701.7 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,502.3 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,904.3 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,770.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1883258.6 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,266644.44 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,360672.44 +,9002207,11.17,ADHD-Combined,Male,116,111,117,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,664.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,807.6 +,9002207,11.17,ADHD-Combined,Male,116,111,117,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,966.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1868.5 +,9002207,11.17,ADHD-Combined,Male,116,111,117,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3563.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4100.2 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,64336.4 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,15330.5 +,9002207,11.17,ADHD-Combined,Male,116,111,117,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3364.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4396.9 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,253.4 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4278.9 +,9002207,11.17,ADHD-Combined,Male,116,111,117,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1807.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2287.3 +,9002207,11.17,ADHD-Combined,Male,116,111,117,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6268.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6445.6 +,9002207,11.17,ADHD-Combined,Male,116,111,117,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8778.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,9023.2 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4032.8 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,354.3 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,57.2 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1940011.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,163.1 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,268331.66 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,359896.9 +,9002207,11.17,ADHD-Combined,Male,116,111,117,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,628.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,789.2 +,9002207,11.17,ADHD-Combined,Male,116,111,117,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1398.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2118.7 +,9002207,11.17,ADHD-Combined,Male,116,111,117,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3747.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4576.9 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,64749.6 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,14265.3 +,9002207,11.17,ADHD-Combined,Male,116,111,117,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3980.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4795.5 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,733.5 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,4130.1 +,9002207,11.17,ADHD-Combined,Male,116,111,117,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1853.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2247.2 +,9002207,11.17,ADHD-Combined,Male,116,111,117,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5811.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6471.9 +,9002207,11.17,ADHD-Combined,Male,116,111,117,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,9166.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8799.7 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4343.2 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,470.2 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,33.4 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,68957.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1327638.5 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1337416.5 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1323480.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,534976.1 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,720569.3 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,920176.3 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,9778.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,2045.3 +,9002207,11.17,ADHD-Combined,Male,116,111,117,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,200872.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,792468.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,9002207,11.17,ADHD-Combined,Male,116,111,117,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,625349.0 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,729.2 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1198.3 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,9326955,10.92,ADHD-Combined,Male,95,96,95,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1112982E7 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1167627.0 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1157666.0 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1157824.0 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,17929.1 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,857.7 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,630.6 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,726.1 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,569.7 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,761.4 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,887.6 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1430455.8 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,207114.45 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,274858.88 +,9326955,10.92,ADHD-Combined,Male,95,96,95,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,566.5808 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,643.6 +,9326955,10.92,ADHD-Combined,Male,95,96,95,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,574.5608 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1428.6 +,9326955,10.92,ADHD-Combined,Male,95,96,95,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3684.105 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3570.8 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,53711.4 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12283.6 +,9326955,10.92,ADHD-Combined,Male,95,96,95,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3033.7341 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3407.3 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,221.2 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,3263.8 +,9326955,10.92,ADHD-Combined,Male,95,96,95,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1713.0424 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1942.3 +,9326955,10.92,ADHD-Combined,Male,95,96,95,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5293.407 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5351.3 +,9326955,10.92,ADHD-Combined,Male,95,96,95,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8436.201 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7931.0 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4176.2 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,417.2 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,5.6 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1537808.0 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,116.7 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,210208.45 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,275643.22 +,9326955,10.92,ADHD-Combined,Male,95,96,95,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,331.17047 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,758.3 +,9326955,10.92,ADHD-Combined,Male,95,96,95,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,546.63074 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1624.9 +,9326955,10.92,ADHD-Combined,Male,95,96,95,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3955.4255 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3720.5 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,53201.4 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12374.8 +,9326955,10.92,ADHD-Combined,Male,95,96,95,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,2884.774 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3273.6 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,256.5 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3149.8 +,9326955,10.92,ADHD-Combined,Male,95,96,95,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1935.1527 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1873.7 +,9326955,10.92,ADHD-Combined,Male,95,96,95,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5338.6274 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5319.6 +,9326955,10.92,ADHD-Combined,Male,95,96,95,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,5588.6675 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8110.0 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4055.5 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,459.6 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,14.0 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,59068.0 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1029039.0 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1036400.0 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1026635.0 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,417322.9 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,550502.1 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,716806.1 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,7361.0 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1215.7 +,9326955,10.92,ADHD-Combined,Male,95,96,95,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,147908.17 +,9326955,10.92,ADHD-Combined,Male,95,96,95,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,692808.6 +,9326955,10.92,ADHD-Combined,Male,95,96,95,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,9326955,10.92,ADHD-Combined,Male,95,96,95,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,476920.03 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,1069.3 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2192.5 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,http://purl.org/nidash/fsl#,Background (mm^3),,,9319265.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1309690.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1289237.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1289882.6 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19768.4 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,824.5 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,701.1 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,710.6 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,537.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,779.1 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1011.2 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1686327.8 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,225196.38 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,311856.94 +,9578631,14.33,Typically Developing Children,Male,117,111,120,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,448.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,566.1 +,9578631,14.33,Typically Developing Children,Male,117,111,120,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1203.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1964.7 +,9578631,14.33,Typically Developing Children,Male,117,111,120,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4559.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4559.8 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,64432.4 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14835.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3804.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4254.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,306.2 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,9071.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1821.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2246.3 +,9578631,14.33,Typically Developing Children,Male,117,111,120,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5687.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6151.4 +,9578631,14.33,Typically Developing Children,Male,117,111,120,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8907.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8445.9 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4423.6 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,412.7 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,19.6 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1739875.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,206.4 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,222729.17 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,306756.2 +,9578631,14.33,Typically Developing Children,Male,117,111,120,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,417.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,581.1 +,9578631,14.33,Typically Developing Children,Male,117,111,120,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1547.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,2120.4 +,9578631,14.33,Typically Developing Children,Male,117,111,120,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4642.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4557.2 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62087.3 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13682.8 +,9578631,14.33,Typically Developing Children,Male,117,111,120,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3387.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4646.1 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,466.9 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5981.2 +,9578631,14.33,Typically Developing Children,Male,117,111,120,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1897.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2129.3 +,9578631,14.33,Typically Developing Children,Male,117,111,120,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5440.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5961.6 +,9578631,14.33,Typically Developing Children,Male,117,111,120,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8624.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8472.5 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4414.4 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,422.8 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,18.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,67057.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1137453.6 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1153745.6 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1132774.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,447925.56 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,618613.1 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,814097.1 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,16292.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,972.1 +,9578631,14.33,Typically Developing Children,Male,117,111,120,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,229067.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,688726.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,9578631,14.33,Typically Developing Children,Male,117,111,120,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,565769.0 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,839.5 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,2160.9 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,9578663,8.26,Typically Developing Children,Female,134,117,143,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1104733E7 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1277438.0 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1262856.0 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1262207.5 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,18600.1 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,933.6 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,546.7 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,645.6 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,584.8 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,829.9 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,696.6 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1534126.6 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,219157.48 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,301867.47 +,9578663,8.26,Typically Developing Children,Female,134,117,143,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,734.161 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,801.3 +,9578663,8.26,Typically Developing Children,Female,134,117,143,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,787.3611 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1364.9 +,9578663,8.26,Typically Developing Children,Female,134,117,143,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4770.717 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4657.0 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,61129.5 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,12329.5 +,9578663,8.26,Typically Developing Children,Female,134,117,143,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4071.1355 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4156.6 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,397.3 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4421.0 +,9578663,8.26,Typically Developing Children,Female,134,117,143,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1937.8126 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2302.4 +,9578663,8.26,Typically Developing Children,Female,134,117,143,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6051.5083 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6489.6 +,9578663,8.26,Typically Developing Children,Female,134,117,143,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7893.561 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7902.0 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4282.4 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,602.0 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,16.7 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1639247.0 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,166.8 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,222254.38 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,306687.2 +,9578663,8.26,Typically Developing Children,Female,134,117,143,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,470.82065 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,758.0 +,9578663,8.26,Typically Developing Children,Female,134,117,143,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,512.0507 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1852.2 +,9578663,8.26,Typically Developing Children,Female,134,117,143,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,5034.057 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4743.1 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,60043.5 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,12597.2 +,9578663,8.26,Typically Developing Children,Female,134,117,143,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3979.3655 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4239.7 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,275.1 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5404.1 +,9578663,8.26,Typically Developing Children,Female,134,117,143,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2218.443 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2057.4 +,9578663,8.26,Typically Developing Children,Female,134,117,143,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6118.0083 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6266.5 +,9578663,8.26,Typically Developing Children,Female,134,117,143,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7551.7505 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7659.6 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4485.2 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,599.4 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,13.1 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,66223.0 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1119576.5 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1130722.5 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1116686.0 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,441411.88 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,608554.7 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,796640.7 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11146.0 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1702.1 +,9578663,8.26,Typically Developing Children,Female,134,117,143,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,155612.88 +,9578663,8.26,Typically Developing Children,Female,134,117,143,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,771573.94 +,9578663,8.26,Typically Developing Children,Female,134,117,143,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,9578663,8.26,Typically Developing Children,Female,134,117,143,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,507563.28 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,854.6 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1800.8 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,http://purl.org/nidash/fsl#,Background (mm^3),,,9319945.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1257320.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1241129.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1242080.2 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,21567.6 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,965.6 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,1004.3 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,899.2 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,791.2 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,1232.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,721.9 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1537991.9 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,234751.36 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,276421.47 +,9640133,13.75,Typically Developing Children,Male,128,123,126,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,585.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,592.5 +,9640133,13.75,Typically Developing Children,Male,128,123,126,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1138.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1868.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3868.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3823.9 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,59463.1 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13841.2 +,9640133,13.75,Typically Developing Children,Male,128,123,126,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3713.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3927.7 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,403.9 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,6480.7 +,9640133,13.75,Typically Developing Children,Male,128,123,126,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2102.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2122.9 +,9640133,13.75,Typically Developing Children,Male,128,123,126,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6176.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6081.3 +,9640133,13.75,Typically Developing Children,Male,128,123,126,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7950.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8760.4 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4437.4 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,339.6 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,28.5 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1694444.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,160.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,237867.53 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,279274.88 +,9640133,13.75,Typically Developing Children,Male,128,123,126,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,512.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,619.9 +,9640133,13.75,Typically Developing Children,Male,128,123,126,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1346.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1856.6 +,9640133,13.75,Typically Developing Children,Male,128,123,126,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4102.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4141.6 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,61831.9 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13540.9 +,9640133,13.75,Typically Developing Children,Male,128,123,126,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4236.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4467.7 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,368.6 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5476.1 +,9640133,13.75,Typically Developing Children,Male,128,123,126,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1953.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2089.5 +,9640133,13.75,Typically Developing Children,Male,128,123,126,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6094.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5936.3 +,9640133,13.75,Typically Developing Children,Male,128,123,126,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7928.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8417.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4508.9 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,337.1 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,11.4 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65195.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1095992.2 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1108946.2 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1092453.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,472618.9 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,555696.4 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,742741.4 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12954.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,797.4 +,9640133,13.75,Typically Developing Children,Male,128,123,126,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,188914.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,684831.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,9640133,13.75,Typically Developing Children,Male,128,123,126,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,574479.0 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,875.2 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1885.4 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,9750701,10.74,Typically Developing Children,Male,113,121,103,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1112415E7 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1072681.0 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1057151.0 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1056879.2 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,15767.3 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,820.8 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,679.8 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,663.2 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,598.1 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,906.6 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,950.3 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1292461.2 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,185919.16 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,250992.28 +,9750701,10.74,Typically Developing Children,Male,113,121,103,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,477.47064 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,552.9 +,9750701,10.74,Typically Developing Children,Male,113,121,103,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,868.4912 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1381.0 +,9750701,10.74,Typically Developing Children,Male,113,121,103,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3645.535 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3640.6 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,51051.7 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,11522.6 +,9750701,10.74,Typically Developing Children,Male,113,121,103,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3185.3545 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3775.2 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,365.3 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5692.7 +,9750701,10.74,Typically Developing Children,Male,113,121,103,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1663.8323 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1724.5 +,9750701,10.74,Typically Developing Children,Male,113,121,103,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5183.017 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5201.0 +,9750701,10.74,Typically Developing Children,Male,113,121,103,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6794.9795 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,6918.7 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,3469.2 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,459.5 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,7.7 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1430384.0 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,106.1 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,185789.78 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,254561.05 +,9750701,10.74,Typically Developing Children,Male,113,121,103,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,268.66037 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,577.6 +,9750701,10.74,Typically Developing Children,Male,113,121,103,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,933.66125 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1642.9 +,9750701,10.74,Typically Developing Children,Male,113,121,103,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3946.1155 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3639.2 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,50916.0 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,11755.9 +,9750701,10.74,Typically Developing Children,Male,113,121,103,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3787.8452 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3915.5 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,399.1 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5259.4 +,9750701,10.74,Typically Developing Children,Male,113,121,103,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1569.4021 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1725.8 +,9750701,10.74,Typically Developing Children,Male,113,121,103,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5137.797 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5080.4 +,9750701,10.74,Typically Developing Children,Male,113,121,103,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6986.4995 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,6618.9 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,3344.5 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,429.7 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,7.4 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,54732.0 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,934703.25 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,946700.25 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,932164.0 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,371708.94 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,505553.3 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,662681.3 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,11997.0 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,653.6 +,9750701,10.74,Typically Developing Children,Male,113,121,103,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,162000.88 +,9750701,10.74,Typically Developing Children,Male,113,121,103,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,616874.8 +,9750701,10.74,Typically Developing Children,Male,113,121,103,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,9750701,10.74,Typically Developing Children,Male,113,121,103,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,422335.44 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,904.8 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1261.8 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,http://purl.org/nidash/fsl#,Background (mm^3),,,1.1103847E7 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1312702.0 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1297386.0 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1297850.1 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,20118.0 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,752.6 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,475.6 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,557.5 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,409.0 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,575.5 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,1013.3 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1561925.5 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,228550.19 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,309088.8 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,546.63074 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,839.2 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,974.89136 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1573.6 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4113.696 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3593.3 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63831.1 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,13752.1 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3986.0154 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,4068.4 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,346.7 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,5871.6 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,1859.3425 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2056.1 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6123.3286 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,5991.8 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8832.542 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8304.1 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4241.8 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,482.3 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,11.3 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1696757.0 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,114.3 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,230421.97 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,309707.16 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,500.0807 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,827.3 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1018.7814 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1729.9 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4065.8157 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,3799.7 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,65765.0 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13456.1 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4229.406 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,4497.0 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,284.4 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,5127.0 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2002.9828 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2079.5 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5848.018 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,5764.1 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8915.002 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8074.3 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4029.4 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,581.9 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,9.1 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,63381.0 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1144267.1 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1156585.1 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1140577.0 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,458972.16 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,618796.0 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,812575.0 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,12318.0 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,972.0 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,156659.58 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,768767.7 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,9907452,9.98,ADHD-Inattentive,Male,132,127,130,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,520615.9 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,3rd-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002286,,811.5 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,4th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002422,,1461.3 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,5th-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0009857,,0.0 +,9922944,10.3,Typically Developing Children,Male,109,110,112,http://purl.org/nidash/fsl#,Background (mm^3),,,1.3056847E7 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1389293.0 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1376337.0 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Brain Segmentation Volume Without Ventricles from Surf (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,1377709.9 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Brain-Stem Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002298,,19514.4 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,CC_Anterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015599,,713.1 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,CC_Central Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002336,,611.1 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Anterior Volume_mm3 (mm^3),,,437.9 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,CC_Mid_Posterior Volume_mm3 (mm^3),,,537.2 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,CC_Posterior Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0015708,,800.2 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,CSF Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,776.9 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Estimated Total Intracranial Volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0013411,,1660301.1 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Left,240316.6 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Left hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Left,327779.84 +,9922944,10.3,Typically Developing Children,Male,109,110,112,http://purl.org/nidash/fsl#,Left-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,434.00143 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Left,1126.1 +,9922944,10.3,Typically Developing Children,Male,109,110,112,http://purl.org/nidash/fsl#,Left-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,587.00195 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Left,1524.6 +,9922944,10.3,Typically Developing Children,Male,109,110,112,http://purl.org/nidash/fsl#,Left-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,3975.0132 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Left,4167.4 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Left,63065.9 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Left,14852.7 +,9922944,10.3,Typically Developing Children,Male,109,110,112,http://purl.org/nidash/fsl#,Left-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,2743.0093 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Left,3655.3 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Left,451.3 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Left,4957.2 +,9922944,10.3,Typically Developing Children,Male,109,110,112,http://purl.org/nidash/fsl#,Left-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2033.0068 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Left,2062.2 +,9922944,10.3,Typically Developing Children,Male,109,110,112,http://purl.org/nidash/fsl#,Left-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6405.0215 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Left,6644.1 +,9922944,10.3,Typically Developing Children,Male,109,110,112,http://purl.org/nidash/fsl#,Left-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,8602.028 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Left,7577.8 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-VentralDC Volume_mm3 (mm^3),,Left,4732.6 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Left,440.2 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-non-WM-hypointensities Volume_mm3 (mm^3),,Left,0.0 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Left-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Left,30.8 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Mask Volume (mm^3),,,1759061.0 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Optic-Chiasm Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0000959,,98.0 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,Right,243364.17 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Right hemisphere cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,Right,345994.25 +,9922944,10.3,Typically Developing Children,Male,109,110,112,http://purl.org/nidash/fsl#,Right-Accumbens-area (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,346.00116 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Accumbens-area Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001882,Right,725.1 +,9922944,10.3,Typically Developing Children,Male,109,110,112,http://purl.org/nidash/fsl#,Right-Amygdala (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,567.0019 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Amygdala Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001876,Right,1682.0 +,9922944,10.3,Typically Developing Children,Male,109,110,112,http://purl.org/nidash/fsl#,Right-Caudate (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4376.0146 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Caudate Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001873,Right,4649.4 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-Cortex Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002129,Right,62306.6 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Cerebellum-White-Matter Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002317,Right,13315.6 +,9922944,10.3,Typically Developing Children,Male,109,110,112,http://purl.org/nidash/fsl#,Right-Hippocampus (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3194.0107 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Hippocampus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001954,Right,3985.3 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Inf-Lat-Vent Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006091,Right,342.2 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Lateral-Ventricle Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0002285,Right,3913.5 +,9922944,10.3,Typically Developing Children,Male,109,110,112,http://purl.org/nidash/fsl#,Right-Pallidum (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,1873.0062 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Pallidum Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0006514,Right,2084.4 +,9922944,10.3,Typically Developing Children,Male,109,110,112,http://purl.org/nidash/fsl#,Right-Putamen (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6698.0225 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Putamen Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001874,Right,6685.2 +,9922944,10.3,Typically Developing Children,Male,109,110,112,http://purl.org/nidash/fsl#,Right-Thalamus-Proper (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,8564.028 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-Thalamus-Proper Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001897,Right,7473.9 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-VentralDC Volume_mm3 (mm^3),,Right,4663.5 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-choroid-plexus Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001886,Right,451.5 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-non-WM-hypointensities Volume_mm3 (mm^3),,Right,0.0 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Right-vessel Volume_mm3 (mm^3),http://purl.obolibrary.org/obo/UBERON_0001981,Right,25.7 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Subcortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000955,,65488.0 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),,,1225564.9 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0001869,,1235691.9 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Supratentorial volume voxel count (mm^3),,,1221518.0 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Total cerebral white matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,483680.78 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Total cortical gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,673774.06 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Total gray matter volume (mm^3),http://purl.obolibrary.org/obo/UBERON_0005401,,866366.06 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,Volume of ventricles and choroid plexus (mm^3),,,10127.0 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,WM-hypointensities Volume_mm3 (mm^3),,,1231.7 +,9922944,10.3,Typically Developing Children,Male,109,110,112,http://purl.org/nidash/fsl#,csf (mm^3),http://purl.obolibrary.org/obo/UBERON_0001359,,213223.7 +,9922944,10.3,Typically Developing Children,Male,109,110,112,http://purl.org/nidash/fsl#,gray (mm^3),http://purl.obolibrary.org/obo/UBERON_0000956,,604039.94 +,9922944,10.3,Typically Developing Children,Male,109,110,112,https://surfer.nmr.mgh.harvard.edu/,non-WM-hypointensities Volume_mm3 (mm^3),,,0.0 +,9922944,10.3,Typically Developing Children,Male,109,110,112,http://purl.org/nidash/fsl#,white (mm^3),http://purl.obolibrary.org/obo/UBERON_0002437,,527886.75